emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110724: * info.el (Info-complete-men


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110724: * info.el (Info-complete-menu-item): Avoid duplicates.
Date: Mon, 29 Oct 2012 18:42:58 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110724
fixes bug: http://debbugs.gnu.org/12705
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2012-10-29 18:42:58 +0800
message:
  * info.el (Info-complete-menu-item): Avoid duplicates.
modified:
  lisp/ChangeLog
  lisp/info.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-29 10:30:11 +0000
+++ b/lisp/ChangeLog    2012-10-29 10:42:58 +0000
@@ -1,10 +1,7 @@
-2012-10-29  Kevin Ryde  <address@hidden>
-
-       * woman.el (woman-parse-numeric-value): Handle picas correctly
-       (Bug#12639).
-
 2012-10-29  Chong Yidong  <address@hidden>
 
+       * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
+
        * startup.el (fancy-about-screen): Don't message (Bug#12680).
 
        * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
@@ -14,6 +11,11 @@
        * face-remap.el (face-remap-add-relative): Handle the case where a
        face-remapping-alist entry is a cons cell (Bug#12762).
 
+2012-10-29  Kevin Ryde  <address@hidden>
+
+       * woman.el (woman-parse-numeric-value): Handle picas correctly
+       (Bug#12639).
+
 2012-10-29  Glenn Morris  <address@hidden>
 
        * emacs-lisp/cl.el (defsetf): Doc fix.

=== modified file 'lisp/info.el'
--- a/lisp/info.el      2012-09-12 20:51:46 +0000
+++ b/lisp/info.el      2012-10-29 10:42:58 +0000
@@ -2646,6 +2646,7 @@
                     (while (re-search-forward pattern nil t)
                       (push (match-string-no-properties 1)
                             completions))
+                   (setq completions (delete-dups completions))
                     ;; Check subsequent nodes if applicable.
                     (or (and Info-complete-next-re
                              (setq nextnode (Info-extract-pointer "next" t))


reply via email to

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