diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-04 23:49:05 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-04 23:49:05 +0000 |
commit | 80f16257e509aa2e35fa0f9ace246d7f567beead (patch) | |
tree | e143138127574d04e4e253616d1f7f37d0413fa6 /lisp/mail/supercite.el | |
parent | 49168e73e3d6b31f6dcc1ce173ce03b50ab8e900 (diff) | |
download | emacs-80f16257e509aa2e35fa0f9ace246d7f567beead.tar.gz emacs-80f16257e509aa2e35fa0f9ace246d7f567beead.tar.bz2 emacs-80f16257e509aa2e35fa0f9ace246d7f567beead.zip |
(sc-citation-nonnested-root-regexp,
sc-add-citation-level, sc-no-blank-line-or-header): Doc fix.
Diffstat (limited to 'lisp/mail/supercite.el')
-rw-r--r-- | lisp/mail/supercite.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index d0ff648233b..332f56672eb 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el @@ -68,7 +68,7 @@ This should NOT have a leading `^' character. See also (defvar sc-citation-nonnested-root-regexp "[-._a-zA-Z0-9]+" "*Regexp describing the variable root part of a nested citation. This should NOT have a leading `^' character. This variable is -related to `sc-citation-root-regexp' but where as that varariable +related to `sc-citation-root-regexp' but whereas that variable describes both nested and non-nested citation roots, this variable describes only nested citation roots.") (defvar sc-citation-delimiter-regexp "[>]+" @@ -1326,7 +1326,7 @@ buffer." nesting))) (defun sc-add-citation-level () - "Add a citation level for nested citation style w/ coersion." + "Add a citation level for nested citation style w/ coercion." (let* ((nesting (sc-guess-nesting)) (citation (make-string (1+ (length nesting)) (string-to-char sc-citation-delimiter))) @@ -1428,7 +1428,7 @@ non-nil." ()) (defun sc-no-blank-line-or-header() - "Similar to `sc-no-header' except it removes the preceeding blank line." + "Similar to `sc-no-header' except it removes the preceding blank line." (if (not (bobp)) (if (and (eolp) (progn (forward-line -1) |