# HG changeset patch # User Miles Bader # Date 1185427228 0 # Node ID 61db43184da9db4b33b4db5bf3e2a42445625e4e # Parent 88083f9a3f28d64a99e1c14836d4a66d23825d66# Parent 9510a7231ed7040aa81b5a898e2c474c51086959 Merge from emacs--rel--22 Patches applied: * emacs--rel--22 (patch 70-73) - Update from CVS 2007-07-25 Glenn Morris * Relicense all FSF files to GPLv3 or later. 2007-07-24 Dan Nicolaescu * lisp/vc-hg.el (vc-hg-revision-completion-table): Temporarily comment out. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-828 diff -r 88083f9a3f28 -r 61db43184da9 lisp/vc-hg.el --- a/lisp/vc-hg.el Thu Jul 26 05:19:58 2007 +0000 +++ b/lisp/vc-hg.el Thu Jul 26 05:20:28 2007 +0000 @@ -9,7 +9,7 @@ ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) +;; the Free Software Foundation; either version 3, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, @@ -76,7 +76,7 @@ ;; - comment-history (file) NOT NEEDED ;; - update-changelog (files) NOT NEEDED ;; * diff (files &optional rev1 rev2 buffer) OK -;; - revision-completion-table (file) OK +;; - revision-completion-table (file) COMMENTED OUT AS A WORKAROUND FOR A BUG ;; - diff-tree (dir &optional rev1 rev2) TEST IT ;; - annotate-command (file buf &optional rev) OK ;; - annotate-time () OK @@ -303,12 +303,12 @@ (buffer-substring-no-properties (point-min) (point-max)))))) ;; Modelled after the similar function in vc-cvs.el -(defun vc-hg-revision-completion-table (file) - (lexical-let ((file file) - table) - (setq table (lazy-completion-table - table (lambda () (vc-hg-revision-table file)))) - table)) +;; (defun vc-hg-revision-completion-table (file) +;; (lexical-let ((file file) +;; table) +;; (setq table (lazy-completion-table +;; table (lambda () (vc-hg-revision-table file)))) +;; table)) (defun vc-hg-diff-tree (file &optional oldvers newvers buffer) (vc-hg-diff (list file) oldvers newvers buffer))