]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix help-mode highlighting of advice warning (Bug#6304).
authorLeo Liu <sdl.web@gmail.com>
Fri, 28 Jan 2011 21:42:11 +0000 (16:42 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 28 Jan 2011 21:42:11 +0000 (16:42 -0500)
* emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
highlighting to the "this function is advisted" message.

* help-mode.el (help-mode-finish): Apply highlighting here, to
avoid clobbering by substitute-command-keys (Bug#6304).

lisp/ChangeLog
lisp/emacs-lisp/advice.el
lisp/help-mode.el

index 272c1359008595302c9f1d0b22fbdd2ab8147b10..ff99d22303fd2b98ebbdac36d3ebb7331244cb41 100644 (file)
@@ -1,3 +1,11 @@
+2011-01-28  Leo  <sdl.web@gmail.com>
+
+       * emacs-lisp/advice.el (ad-make-advised-docstring): Don't apply
+       highlighting to the "this function is advisted" message.
+
+       * help-mode.el (help-mode-finish): Apply highlighting here, to
+       avoid clobbering by substitute-command-keys (Bug#6304).
+
 2011-01-28  Chong Yidong  <cyd@stupidchicken.com>
 
        * woman.el (woman0-roff-buffer): Process roff escape sequences
index a1a3c3e5f93f5d8d94ef6719c9ca216ca647e676..915a726ae118237be837f7d3ab9131e86ad79388 100644 (file)
@@ -3007,9 +3007,7 @@ in any of these classes."
     (setq usage (if (null usage) t (setq origdoc (cdr usage)) (car usage)))
     (if origdoc (setq paragraphs (list origdoc)))
     (unless (eq style 'plain)
-      (push (propertize (concat "This " origtype " is advised.")
-                       'face 'font-lock-warning-face)
-           paragraphs))
+      (push (concat "This " origtype " is advised.") paragraphs))
     (ad-dolist (class ad-advice-classes)
       (ad-dolist (advice (ad-get-enabled-advices function class))
        (setq advice-docstring
index cafd7d07fde1ab0cee8291f79afb361cde4e2573..826145d7af072ee484dc00d17931f3b980a44a77 100644 (file)
@@ -325,6 +325,15 @@ Commands:
     ;; View mode's read-only status of existing *Help* buffer is lost
     ;; by with-output-to-temp-buffer.
     (toggle-read-only 1)
+
+    (save-excursion
+      (goto-char (point-min))
+      (let ((inhibit-read-only t))
+       (when (re-search-forward "^This \\w+ is advised.$" nil t)
+         (put-text-property (match-beginning 0)
+                            (match-end 0)
+                            'face 'font-lock-warning-face))))
+
     (help-make-xrefs (current-buffer))))
 \f
 ;; Grokking cross-reference information in doc strings and