summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-06 02:36:55 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-06 02:36:55 +0000
commiteff47a0d3fc5fe3ba0bb289f83379722dac957c1 (patch)
tree2dcdff16c53f10532cba19c40482e0a8e5956841 /lisp/emacs-lisp
parent32a37bc62891ebfd29880dfe82155158ea11c8e1 (diff)
downloademacs-eff47a0d3fc5fe3ba0bb289f83379722dac957c1.tar.gz
emacs-eff47a0d3fc5fe3ba0bb289f83379722dac957c1.tar.bz2
emacs-eff47a0d3fc5fe3ba0bb289f83379722dac957c1.zip
(x-kill-primary-selection, x-delete-primary-selection,
x-copy-primary-selection): Fix typos in error messages.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/lselect.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lselect.el b/lisp/emacs-lisp/lselect.el
index 1d40d2e8368..5aed4822818 100644
--- a/lisp/emacs-lisp/lselect.el
+++ b/lisp/emacs-lisp/lselect.el
@@ -191,7 +191,7 @@ secondary selection instead of the primary selection."
"If there is a selection, delete the text it covers, and copy it to
both the kill ring and the Clipboard."
(interactive)
- (or (x-selection-owner-p) (error "emacs does not own the primary selection"))
+ (or (x-selection-owner-p) (error "Emacs does not own the primary selection"))
(setq last-command nil)
(or primary-selection-extent
(error "the primary selection is not an extent?"))
@@ -205,7 +205,7 @@ both the kill ring and the Clipboard."
"If there is a selection, delete the text it covers *without* copying it to
the kill ring or the Clipboard."
(interactive)
- (or (x-selection-owner-p) (error "emacs does not own the primary selection"))
+ (or (x-selection-owner-p) (error "Emacs does not own the primary selection"))
(setq last-command nil)
(or primary-selection-extent
(error "the primary selection is not an extent?"))
@@ -219,7 +219,7 @@ the kill ring or the Clipboard."
"If there is a selection, copy it to both the kill ring and the Clipboard."
(interactive)
(setq last-command nil)
- (or (x-selection-owner-p) (error "emacs does not own the primary selection"))
+ (or (x-selection-owner-p) (error "Emacs does not own the primary selection"))
(or primary-selection-extent
(error "the primary selection is not an extent?"))
(save-excursion