emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog info.el


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp ChangeLog info.el
Date: Mon, 19 Oct 2009 13:29:39 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/10/19 13:29:38

Modified files:
        lisp           : ChangeLog info.el 

Log message:
        (Info-complete-menu-item): Use complete-with-action.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16460&r2=1.16461
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/info.el?cvsroot=emacs&r1=1.567&r2=1.568

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16460
retrieving revision 1.16461
diff -u -b -r1.16460 -r1.16461
--- ChangeLog   19 Oct 2009 05:04:24 -0000      1.16460
+++ ChangeLog   19 Oct 2009 13:29:34 -0000      1.16461
@@ -1,8 +1,12 @@
+2009-10-19  Stefan Monnier  <address@hidden>
+
+       * info.el (Info-complete-menu-item): Use complete-with-action.
+
 2009-10-19  Dan Nicolaescu  <address@hidden>
 
        Make vc-annotate work through copies and renames.
-       * vc-annotate.el (vc-annotate-extract-revision-at-line): Return
-       the file name too.
+       * vc-annotate.el (vc-annotate-extract-revision-at-line):
+       Return the file name too.
        (vc-annotate-revision-at-line)
        (vc-annotate-find-revision-at-line)
        (vc-annotate-revision-previous-to-line)
@@ -11,8 +15,8 @@
        (vc-annotate-show-diff-revision-at-line-internal): Change the
        argument to mean whether to show a file diff or not.  Get the file
        name from vc-annotate-extract-revision-at-line.
-       (vc-annotate-show-diff-revision-at-line): Update
-       vc-annotate-show-diff-revision-at-line call.
+       (vc-annotate-show-diff-revision-at-line):
+       Update vc-annotate-show-diff-revision-at-line call.
        (vc-annotate-warp-revision): Add an optional file argument.
 
        * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
@@ -44,8 +48,7 @@
        * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
        read syntax (Bug#4737).
 
-       * textmodes/sgml-mode.el (sgml-delete-tag): Use
-       sgml-looking-back-at.
+       * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
 
 2009-10-18  Aaron S. Hawley  <address@hidden>
 

Index: info.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/info.el,v
retrieving revision 1.567
retrieving revision 1.568
diff -u -b -r1.567 -r1.568
--- info.el     4 Oct 2009 23:31:52 -0000       1.567
+++ info.el     19 Oct 2009 13:29:38 -0000      1.568
@@ -2480,9 +2480,7 @@
                   (list Info-current-file Info-current-node
                         Info-complete-next-re string completions
                         Info-complete-nodes)))
-           (if action
-               (all-completions string completions predicate)
-             (try-completion string completions predicate))))))))
+            (complete-with-action action completions string predicate)))))))
 
 
 (defun Info-menu (menu-item &optional fork)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]