branch: externals/auctex
commit 68095a356415bea5c55aae0371d93d234d88ff22
Author: Ikumi Keita <[email protected]>
Commit: Ikumi Keita <[email protected]>
Fix previous removal of xemacs compatibility code
* toolbar-x.el (toolbarx-default-toolbar-meaning-alist): Remove
spurious quote formerly inside "," construct.
Replace "`" with "'".
---
toolbar-x.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/toolbar-x.el b/toolbar-x.el
index 79dacdc..2eab8d3 100644
--- a/toolbar-x.el
+++ b/toolbar-x.el
@@ -1492,9 +1492,9 @@ this button is ignored."
(defconst toolbarx-default-toolbar-meaning-alist
- `((separator :image "sep" :command t :enable nil :help "")
+ '((separator :image "sep" :command t :enable nil :help "")
- ('new-file
+ (new-file
:image ["new" toolbar-file-icon]
:command [find-file toolbar-open]
:enable [(not (window-minibuffer-p
@@ -1502,7 +1502,7 @@ this button is ignored."
t]
:help ["Specify a new file's name, to edit the file" "Visit new file"])
- '(open-file :image ["open" toolbar-file-icon]
+ (open-file :image ["open" toolbar-file-icon]
:command [menu-find-file-existing toolbar-open]
:enable [(not (window-minibuffer-p
(frame-selected-window menu-updating-frame)))