summaryrefslogtreecommitdiff
path: root/lisp/emulation/vi.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-07-31 20:19:25 +0000
committerRichard M. Stallman <rms@gnu.org>1995-07-31 20:19:25 +0000
commitcbf08f77bc743c80b54be87f30093d2be1c5c0a5 (patch)
treeef7502dd520cfd9f98b1eef1a166c5c7398dd437 /lisp/emulation/vi.el
parenteee5aed1f2b1e221b3fcf61f363fbaa5d4f22c14 (diff)
downloademacs-cbf08f77bc743c80b54be87f30093d2be1c5c0a5.tar.gz
(vi-scroll-amount, vi-shift-width): Fix syntax of doc strings.
Diffstat (limited to 'lisp/emulation/vi.el')
-rw-r--r--lisp/emulation/vi.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emulation/vi.el b/lisp/emulation/vi.el
index 8b53e4318b2..47ff8a64804 100644
--- a/lisp/emulation/vi.el
+++ b/lisp/emulation/vi.el
@@ -314,13 +314,13 @@ command extensions.")
"Alist of (NAME . MARK), marks are local to each buffer.")
(defvar vi-scroll-amount (/ (window-height) 2)
- "Default amount of lines for scrolling (used by "^D"/"^U").")
+ "Default amount of lines for scrolling (used by \"^D\"/\"^U\").")
(defvar vi-shift-width 4
- "Shift amount for "<"/">" operators.")
+ "Shift amount for \"<\"/\">\" operators.")
(defvar vi-ins-point nil ; integer
- "Last insertion point. Should use 'mark' instead.")
+ "Last insertion point. Should use `mark' instead.")
(defvar vi-ins-length nil ; integer
"Length of last insertion.")
@@ -339,13 +339,13 @@ command extensions.")
(defvar vi-last-change-command nil ; cons cell
"Save commands for redoing last changes. Each command is in (FUNC . ARGS)
-form that is ready to be 'apply'ed.")
+form that is ready to be `apply'ed.")
(defvar vi-last-shell-command nil ; last shell op command line
"Save last shell command given for \"!\" operator.")
(defvar vi-insert-state nil ; boolean
- "T if it is in insert state.")
+ "Non-nil if it is in insert state.")
; in "loaddefs.el"
;(defvar search-last-string ""