aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1996-01-04 23:49:05 +0000
committerKarl Heuer1996-01-04 23:49:05 +0000
commit80f16257e509aa2e35fa0f9ace246d7f567beead (patch)
treee143138127574d04e4e253616d1f7f37d0413fa6
parent49168e73e3d6b31f6dcc1ce173ce03b50ab8e900 (diff)
downloademacs-80f16257e509aa2e35fa0f9ace246d7f567beead.tar.gz
emacs-80f16257e509aa2e35fa0f9ace246d7f567beead.zip
(sc-citation-nonnested-root-regexp,
sc-add-citation-level, sc-no-blank-line-or-header): Doc fix.
-rw-r--r--lisp/mail/supercite.el6
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
68(defvar sc-citation-nonnested-root-regexp "[-._a-zA-Z0-9]+" 68(defvar sc-citation-nonnested-root-regexp "[-._a-zA-Z0-9]+"
69 "*Regexp describing the variable root part of a nested citation. 69 "*Regexp describing the variable root part of a nested citation.
70This should NOT have a leading `^' character. This variable is 70This should NOT have a leading `^' character. This variable is
71related to `sc-citation-root-regexp' but where as that varariable 71related to `sc-citation-root-regexp' but whereas that variable
72describes both nested and non-nested citation roots, this variable 72describes both nested and non-nested citation roots, this variable
73describes only nested citation roots.") 73describes only nested citation roots.")
74(defvar sc-citation-delimiter-regexp "[>]+" 74(defvar sc-citation-delimiter-regexp "[>]+"
@@ -1326,7 +1326,7 @@ buffer."
1326 nesting))) 1326 nesting)))
1327 1327
1328(defun sc-add-citation-level () 1328(defun sc-add-citation-level ()
1329 "Add a citation level for nested citation style w/ coersion." 1329 "Add a citation level for nested citation style w/ coercion."
1330 (let* ((nesting (sc-guess-nesting)) 1330 (let* ((nesting (sc-guess-nesting))
1331 (citation (make-string (1+ (length nesting)) 1331 (citation (make-string (1+ (length nesting))
1332 (string-to-char sc-citation-delimiter))) 1332 (string-to-char sc-citation-delimiter)))
@@ -1428,7 +1428,7 @@ non-nil."
1428 ()) 1428 ())
1429 1429
1430(defun sc-no-blank-line-or-header() 1430(defun sc-no-blank-line-or-header()
1431 "Similar to `sc-no-header' except it removes the preceeding blank line." 1431 "Similar to `sc-no-header' except it removes the preceding blank line."
1432 (if (not (bobp)) 1432 (if (not (bobp))
1433 (if (and (eolp) 1433 (if (and (eolp)
1434 (progn (forward-line -1) 1434 (progn (forward-line -1)