summaryrefslogtreecommitdiff
path: root/lisp/emulation
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2010-08-05 23:31:03 +0200
committerJuanma Barranquero <lekktu@gmail.com>2010-08-05 23:31:03 +0200
commitf6b55526bd58545b480a2a79d944971be67d9c07 (patch)
treeb7759866b8da75ae40ed3c8d8e0b6a1213b55658 /lisp/emulation
parentc613687be4a79df9fe2e3ef12b4fe3fecd07a591 (diff)
downloademacs-f6b55526bd58545b480a2a79d944971be67d9c07.tar.gz
* emulation/pc-select.el: Fix typos in docstrings.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/pc-select.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/emulation/pc-select.el b/lisp/emulation/pc-select.el
index db47ee4276b..22983f49694 100644
--- a/lisp/emulation/pc-select.el
+++ b/lisp/emulation/pc-select.el
@@ -108,7 +108,7 @@ This gives mostly Emacs-like behavior with only the selection keys enabled."
:group 'pc-select)
(defcustom pc-selection-mode-hook nil
- "The hook to run when pc-selection-mode is toggled."
+ "The hook to run when PC Selection mode is toggled."
:type 'hook
:group 'pc-select)
@@ -259,7 +259,7 @@ association.")
(provide 'pc-select)
(defun copy-region-as-kill-nomark (beg end)
- "Save the region as if killed; but don't kill it; deactivate mark.
+ "Save the region as if killed, but don't kill it; deactivate mark.
If `interprogram-cut-function' is non-nil, also save the text for a window
system cut and paste.
@@ -567,7 +567,7 @@ Don't use this command in Lisp programs!
;;;;;;;;;;;;;;;;;;;;
(defun backward-char-mark (&optional arg)
-"Ensure mark is active; move point left ARG characters (right if ARG negative).
+ "Ensure mark is active; move point left ARG characters (right if ARG negative).
On attempt to pass beginning or end of buffer, stop and signal error."
(interactive "p")
(pc-select-ensure-mark)
@@ -631,7 +631,7 @@ If scan reaches end of buffer, stop there without error."
(defun scroll-up-mark (&optional arg)
-"Ensure mark is active; scroll upward ARG lines; or near full screen if no ARG.
+ "Ensure mark is active; scroll upward ARG lines; or near full screen if no ARG.
A near full screen is `next-screen-context-lines' less than a full screen.
Negative ARG means scroll downward.
When calling from a program, supply a number as argument or nil.
@@ -652,7 +652,7 @@ If the buffer is narrowed, this command uses the beginning and size
of the accessible part of the buffer.
Don't use this command in Lisp programs!
-\(goto-char (p\oint-min)) is faster and avoids clobbering the mark."
+\(goto-char (point-min)) is faster and avoids clobbering the mark."
(interactive "P")
(pc-select-ensure-mark)
(let ((size (- (point-max) (point-min))))
@@ -839,7 +839,7 @@ If the value is non-nil, call the function MODE with an argument of
;;;###autoload
(define-minor-mode pc-selection-mode
- "Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style.
+ "Change mark behavior to emulate Motif, Mac or MS-Windows cut and paste style.
This mode enables Delete Selection mode and Transient Mark mode.