summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2014-07-17 18:09:22 -0400
committerTorsten Hilbrich <torsten.hilbrich@gmx.net>2014-07-18 05:29:28 +0200
commit14c0acfb12fc8e5d727ba4cacd8b1699c680dca2 (patch)
treebd189cf6b5522858e5a377669908ef35d2afc808
parenta5619fb275520d699eaae214e41ebcfde23c17f3 (diff)
name the dictionary buffer *Dictionary*
also untabify the lines
-rw-r--r--dictionary.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/dictionary.el b/dictionary.el
index 33f2ce4..0cc8887 100644
--- a/dictionary.el
+++ b/dictionary.el
@@ -370,10 +370,10 @@ by the choice value:
"Create a new dictonary buffer and install dictionary-mode"
(interactive)
(let ((buffer (or (and dictionary-use-single-buffer
- (get-buffer "*Dictionary buffer*"))
- (generate-new-buffer "*Dictionary buffer*")))
- (window-configuration (current-window-configuration))
- (selected-window (frame-selected-window)))
+ (get-buffer "*Dictionary*"))
+ (generate-new-buffer "*Dictionary*")))
+ (window-configuration (current-window-configuration))
+ (selected-window (frame-selected-window)))
(switch-to-buffer-other-window buffer)
(dictionary-mode)