aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-10-06 20:56:24 +0000
committerRichard M. Stallman <[email protected]>1994-10-06 20:56:24 +0000
commit3a841b0be2996c2c095b61a080ba035932b12c49 (patch)
treee86a6ef2aac73d066edfe9515bf6774238759f80 /lisp
parent99c0333bc4ffccc455bf4e8f597b9e2581b9670a (diff)
(query-replace): Add missing quote.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/menu-bar.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 13a229247b..1a8cbfea12 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -128,7 +128,7 @@
(put 'undo 'menu-enable '(if (eq last-command 'undo)
pending-undo-list
(consp buffer-undo-list)))
-(put 'query-replace 'menu-enable (not buffer-read-only))
+(put 'query-replace 'menu-enable '(not buffer-read-only))
(autoload 'ispell-menu-map "ispell" nil t 'keymap)