changeset 73746:0ed577e1fa46

(x-kill-primary-selection, x-delete-primary-selection, x-copy-primary-selection): Fix typos in error messages.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 06 Nov 2006 02:36:55 +0000
parents 06fca0c59a88
children 59cd5ef2f5f0
files lisp/emacs-lisp/lselect.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/lselect.el	Mon Nov 06 02:35:42 2006 +0000
+++ b/lisp/emacs-lisp/lselect.el	Mon Nov 06 02:36:55 2006 +0000
@@ -191,7 +191,7 @@
   "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 @@
   "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 @@
   "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