emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp ChangeLog apropos.el
Date: Wed, 03 Dec 2008 21:57:13 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        08/12/03 21:57:12

Modified files:
        lisp           : ChangeLog apropos.el 

Log message:
        (apropos-print-doc): Fix thinko that caused long labels to
        be used in compact layout and vice-versa.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.14908&r2=1.14909
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/apropos.el?cvsroot=emacs&r1=1.134&r2=1.135

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.14908
retrieving revision 1.14909
diff -u -b -r1.14908 -r1.14909
--- ChangeLog   3 Dec 2008 16:36:59 -0000       1.14908
+++ ChangeLog   3 Dec 2008 21:57:10 -0000       1.14909
@@ -1,3 +1,8 @@
+2008-12-03  Stefan Monnier  <address@hidden>
+
+       * apropos.el (apropos-print-doc): Fix thinko that caused long labels to
+       be used in compact layout and vice-versa.
+
 2008-12-03  Juanma Barranquero  <address@hidden>
 
        * w32-fns.el (w32-list-locales): Use `with-output-to-temp-buffer',

Index: apropos.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/apropos.el,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -b -r1.134 -r1.135
--- apropos.el  3 Dec 2008 05:48:18 -0000       1.134
+++ apropos.el  3 Dec 2008 21:57:12 -0000       1.135
@@ -1082,8 +1082,8 @@
         'face 'default 'apropos-symbol (car apropos-item))
       (insert-text-button
        (if apropos-compact-layout
-           (button-type-get type 'apropos-label)
-         (format "<%s>" (button-type-get type 'apropos-short-label)))
+           (format "<%s>" (button-type-get type 'apropos-short-label))
+         (button-type-get type 'apropos-label))
        'type type
        ;; Can't use the default button face, since user may have changed the
        ;; variable!  Just say `no' to variables containing faces!




reply via email to

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