diff options
| author | Chong Yidong | 2011-08-09 17:55:34 -0400 |
|---|---|---|
| committer | Chong Yidong | 2011-08-09 17:55:34 -0400 |
| commit | 8d96c9a4e700ad17921f8d2c90f4244bfa4b98b1 (patch) | |
| tree | 8d8817a98a6c196752edd16ae578f61342a007c8 | |
| parent | 29bbcfa7054e69db0dbe8250af2c809b39ecb54d (diff) | |
| download | emacs-8d96c9a4e700ad17921f8d2c90f4244bfa4b98b1.tar.gz emacs-8d96c9a4e700ad17921f8d2c90f4244bfa4b98b1.zip | |
* hi-lock.el (hi-lock-unface-buffer): Fix interactive spec (Bug#7554).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/hi-lock.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a42c0127ff5..509978a8127 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-08-09 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec | ||
| 4 | (Bug#7554). | ||
| 5 | |||
| 1 | 2011-07-28 Andreas Schwab <schwab@linux-m68k.org> | 6 | 2011-07-28 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 7 | ||
| 3 | * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw | 8 | * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw |
diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el index 31d62723281..7b2f5f51260 100644 --- a/lisp/hi-lock.el +++ b/lisp/hi-lock.el | |||
| @@ -461,7 +461,9 @@ interactive functions. \(See `hi-lock-interactive-patterns'.\) | |||
| 461 | \\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp. | 461 | \\<minibuffer-local-must-match-map>Use \\[minibuffer-complete] to complete a partially typed regexp. |
| 462 | \(See info node `Minibuffer History'.\)" | 462 | \(See info node `Minibuffer History'.\)" |
| 463 | (interactive | 463 | (interactive |
| 464 | (if (and (display-popup-menus-p) (not last-nonmenu-event)) | 464 | (if (and (display-popup-menus-p) |
| 465 | (listp last-nonmenu-event) | ||
| 466 | use-dialog-box) | ||
| 465 | (catch 'snafu | 467 | (catch 'snafu |
| 466 | (or | 468 | (or |
| 467 | (x-popup-menu | 469 | (x-popup-menu |