diff options
| author | Leo Liu | 2011-01-28 16:42:11 -0500 |
|---|---|---|
| committer | Chong Yidong | 2011-01-28 16:42:11 -0500 |
| commit | b1ea593c8121821485fdc758a30efdf03bb63168 (patch) | |
| tree | cf627656a45157cd1d137c4d9995785ed6fff39e /lisp/help-mode.el | |
| parent | 40e22d80ae027f2a833be444d95bce832b68e54c (diff) | |
| download | emacs-b1ea593c8121821485fdc758a30efdf03bb63168.tar.gz emacs-b1ea593c8121821485fdc758a30efdf03bb63168.zip | |
Fix help-mode highlighting of advice warning (Bug#6304).
* 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).
Diffstat (limited to 'lisp/help-mode.el')
| -rw-r--r-- | lisp/help-mode.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index cafd7d07fde..826145d7af0 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el | |||
| @@ -325,6 +325,15 @@ Commands: | |||
| 325 | ;; View mode's read-only status of existing *Help* buffer is lost | 325 | ;; View mode's read-only status of existing *Help* buffer is lost |
| 326 | ;; by with-output-to-temp-buffer. | 326 | ;; by with-output-to-temp-buffer. |
| 327 | (toggle-read-only 1) | 327 | (toggle-read-only 1) |
| 328 | |||
| 329 | (save-excursion | ||
| 330 | (goto-char (point-min)) | ||
| 331 | (let ((inhibit-read-only t)) | ||
| 332 | (when (re-search-forward "^This \\w+ is advised.$" nil t) | ||
| 333 | (put-text-property (match-beginning 0) | ||
| 334 | (match-end 0) | ||
| 335 | 'face 'font-lock-warning-face)))) | ||
| 336 | |||
| 328 | (help-make-xrefs (current-buffer)))) | 337 | (help-make-xrefs (current-buffer)))) |
| 329 | 338 | ||
| 330 | ;; Grokking cross-reference information in doc strings and | 339 | ;; Grokking cross-reference information in doc strings and |