]> git.eshelyaron.com Git - emacs.git/commitdiff
(x-kill-primary-selection, x-delete-primary-selection,
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 6 Nov 2006 02:36:55 +0000 (02:36 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 6 Nov 2006 02:36:55 +0000 (02:36 +0000)
x-copy-primary-selection): Fix typos in error messages.

lisp/emacs-lisp/lselect.el

index 1d40d2e836870960849f29dc07117afb69218ce9..5aed4822818316bf046b697237522bdea4a3a2bd 100644 (file)
@@ -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