]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-hg-revision-completion-table): Temporarily comment
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 24 Jul 2007 19:02:02 +0000 (19:02 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 24 Jul 2007 19:02:02 +0000 (19:02 +0000)
out.

lisp/ChangeLog
lisp/vc-hg.el

index 2f0a20803165222dde999039c9ec1b48afc70302..b5d851e6345b30595f640866d1c70d1818949b20 100644 (file)
@@ -1,3 +1,8 @@
+2007-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-hg.el (vc-hg-revision-completion-table): Temporarily comment
+       out.
+
 2007-07-24  Alan Mackenzie  <acm@muc.de>
 
        * emacs-lisp/bytecomp.el (byte-compile-from-buffer): initialise
index 7fd8d5f532b3543b87905058561bd11ea8c3ebc8..02f6e460f71e8bd8cf571d3c1e18f3d6b94928f0 100644 (file)
@@ -72,7 +72,7 @@
 ;; - comment-history (file)                    NOT NEEDED
 ;; - update-changelog (files)                  NOT NEEDED
 ;; * diff (file &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
        (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))
 
 (defalias 'vc-hg-diff-tree 'vc-hg-diff)
 
@@ -385,7 +385,7 @@ COMMENT is ignored."
 (defun vc-hg-checkin (file rev comment)
   "HG-specific version of `vc-backend-checkin'.
 REV is ignored."
-  (vc-hg-command nil 0 files  "commit" "-m" comment))
+  (vc-hg-command nil 0 file  "commit" "-m" comment))
 
 (defun vc-hg-find-version (file rev buffer)
   (let ((coding-system-for-read 'binary)