aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Zaborsky1992-11-03 19:47:32 +0000
committerChristopher Zaborsky1992-11-03 19:47:32 +0000
commit33b4a308e6b4b9825b7010dc6fa205a74a23f1e4 (patch)
tree5f5c26ff99d3624e196920ffc64ca3cb79dfa106
parent2de735de75f96dd7f00205f9b9f2e76cce4d8101 (diff)
downloademacs-33b4a308e6b4b9825b7010dc6fa205a74a23f1e4.tar.gz
emacs-33b4a308e6b4b9825b7010dc6fa205a74a23f1e4.zip
Dox fix.
-rw-r--r--lisp/mail/sendmail.el6
-rw-r--r--lisp/textmodes/scribe.el13
2 files changed, 10 insertions, 9 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index e589913b9bd..a99cdb4c898 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -42,7 +42,7 @@ Delete these headers from old message when it's inserted in a reply.")
42;;;###autoload 42;;;###autoload
43(defconst send-mail-function 'sendmail-send-it "\ 43(defconst send-mail-function 'sendmail-send-it "\
44Function to call to send the current buffer as mail. 44Function to call to send the current buffer as mail.
45The headers are be delimited by a line which is mail-header-separator.") 45The headers are be delimited by a line which is `mail-header-separator'.")
46 46
47;;;###autoload 47;;;###autoload
48(defvar mail-header-separator "--text follows this line--" "\ 48(defvar mail-header-separator "--text follows this line--" "\
@@ -211,7 +211,7 @@ C-c C-v mail-sent-via (add a sent-via field for each To or CC)."
211 (define-key mail-mode-map "\C-c\C-s" 'mail-send)) 211 (define-key mail-mode-map "\C-c\C-s" 'mail-send))
212 212
213(defun mail-send-and-exit (arg) 213(defun mail-send-and-exit (arg)
214 "Send message like mail-send, then, if no errors, exit from mail buffer. 214 "Send message like `mail-send', then, if no errors, exit from mail buffer.
215Prefix arg means don't delete this window." 215Prefix arg means don't delete this window."
216 (interactive "P") 216 (interactive "P")
217 (mail-send) 217 (mail-send)
@@ -518,7 +518,7 @@ the user from the mailer."
518 (search-forward (concat "\n" mail-header-separator "\n"))) 518 (search-forward (concat "\n" mail-header-separator "\n")))
519 519
520(defun mail-signature (atpoint) 520(defun mail-signature (atpoint)
521 "Sign letter with contents of mail-signature-file." 521 "Sign letter with contents of `mail-signature-file'."
522 (interactive "P") 522 (interactive "P")
523 (save-excursion 523 (save-excursion
524 (or atpoint 524 (or atpoint
diff --git a/lisp/textmodes/scribe.el b/lisp/textmodes/scribe.el
index 891c67ea314..423de634308 100644
--- a/lisp/textmodes/scribe.el
+++ b/lisp/textmodes/scribe.el
@@ -42,8 +42,8 @@ if typed after an @Command form.")
42 "Open parenthesis characters for Scribe.") 42 "Open parenthesis characters for Scribe.")
43 43
44(defconst scribe-close-parentheses "])}>" 44(defconst scribe-close-parentheses "])}>"
45 "Close parenthesis characters for Scribe. These should match up with 45 "Close parenthesis characters for Scribe.
46scribe-open-parenthesis.") 46These should match up with `scribe-open-parenthesis'.")
47 47
48(if (null scribe-mode-syntax-table) 48(if (null scribe-mode-syntax-table)
49 (let ((st (syntax-table))) 49 (let ((st (syntax-table)))
@@ -149,9 +149,9 @@ scribe-electric-parenthesis
149 (call-interactively 'compile)) 149 (call-interactively 'compile))
150 150
151(defun scribe-envelop-word (string count) 151(defun scribe-envelop-word (string count)
152 "Surround current word with Scribe construct @STRING[...]. COUNT 152 "Surround current word with Scribe construct @STRING[...].
153specifies how many words to surround. A negative count means to skip 153COUNT specifies how many words to surround. A negative count means
154backward." 154to skip backward."
155 (let ((spos (point)) (epos (point)) (ccoun 0) noparens) 155 (let ((spos (point)) (epos (point)) (ccoun 0) noparens)
156 (if (not (zerop count)) 156 (if (not (zerop count))
157 (progn (if (= (char-syntax (preceding-char)) ?w) 157 (progn (if (= (char-syntax (preceding-char)) ?w)
@@ -253,7 +253,8 @@ backward."
253 (forward-char -1)) 253 (forward-char -1))
254 254
255(defun scribe-insert-quote (count) 255(defun scribe-insert-quote (count)
256 "If scribe-electric-quote is non-NIL, insert ``, '' or \" according 256 "Insert ``, '' or \" according to preceding character.
257If `scribe-electric-quote' is non-NIL, insert ``, '' or \" according
257to preceding character. With numeric arg N, always insert N \" characters. 258to preceding character. With numeric arg N, always insert N \" characters.
258Else just insert \"." 259Else just insert \"."
259 (interactive "P") 260 (interactive "P")