diff options
| author | Richard M. Stallman | 1994-10-06 20:56:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-06 20:56:24 +0000 |
| commit | 3a841b0be2996c2c095b61a080ba035932b12c49 (patch) | |
| tree | e86a6ef2aac73d066edfe9515bf6774238759f80 | |
| parent | 99c0333bc4ffccc455bf4e8f597b9e2581b9670a (diff) | |
| download | emacs-3a841b0be2996c2c095b61a080ba035932b12c49.tar.gz emacs-3a841b0be2996c2c095b61a080ba035932b12c49.zip | |
(query-replace): Add missing quote.
| -rw-r--r-- | lisp/menu-bar.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 13a229247be..1a8cbfea12e 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -128,7 +128,7 @@ | |||
| 128 | (put 'undo 'menu-enable '(if (eq last-command 'undo) | 128 | (put 'undo 'menu-enable '(if (eq last-command 'undo) |
| 129 | pending-undo-list | 129 | pending-undo-list |
| 130 | (consp buffer-undo-list))) | 130 | (consp buffer-undo-list))) |
| 131 | (put 'query-replace 'menu-enable (not buffer-read-only)) | 131 | (put 'query-replace 'menu-enable '(not buffer-read-only)) |
| 132 | 132 | ||
| 133 | (autoload 'ispell-menu-map "ispell" nil t 'keymap) | 133 | (autoload 'ispell-menu-map "ispell" nil t 'keymap) |
| 134 | 134 | ||