bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#712: No highlight with key-bindings in *Help* buffer


From: kimito
Subject: bug#712: No highlight with key-bindings in *Help* buffer
Date: Thu, 14 Aug 2008 01:05:33 +0900
User-agent: Wanderlust/2.15.5 (Almost Unreal) SEMI/1.14.6 (Maruoka) LIMIT/1.14.9 (Domyoji) APEL/10.7 Emacs/22.1 (i386-mingw-nt5.1.2600) MULE/5.0 (SAKAKI) Meadow/3.00-dev (KIKU)

(emacs-version)
-> "GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600)
    of 2007-07-08 on CUBE"

1. start emacs with -q option
2. eval (setq-default indent-tabs-mode nil)
3. M-x describe-bindings

In *Help* buffer, there is no underline
(highlight as help-xref-button) on functions' name.


How about this one?

diff -u c/:/util/meadow/lisp/help-mode.el c\:/util/meadow/lisp/help-mode.mod.el
--- c:/util/meadow/lisp/help-mode.el 2007-07-08 14:28:08.001000000 +0900
+++ c:/util/meadow/lisp/help-mode.mod.el 2008-07-29 10:01:32.839526100 +0900
@@ -462,7 +462,7 @@
         ;; Skip a single blank line.
         (and (eolp) (forward-line))
         (end-of-line)
-        (skip-chars-backward "^\t\n")
+        (skip-chars-backward "^ \t\n")
         (if (and (>= (current-column) col)
           (looking-at "\\(\\sw\\|-\\)+$"))
      (let ((sym (intern-soft (match-string 0))))

Diff finished.  Tue Jul 29 10:01:45 2008


Best Regards,
Kimito Yada








reply via email to

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