aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReiner Steib2005-12-09 16:44:18 +0000
committerReiner Steib2005-12-09 16:44:18 +0000
commite8f4db18e24675bf5f5a5c722936e89c3c97290a (patch)
tree9e7bcf350f8908e6ea4d807268e68d1f3a9c612a
parent19126168414f04503da694892e9ce87ac70796c5 (diff)
downloademacs-e8f4db18e24675bf5f5a5c722936e89c3c97290a.tar.gz
emacs-e8f4db18e24675bf5f5a5c722936e89c3c97290a.zip
* files.el (save-buffer):
* international/ucs-tables.el (ucs-set-table-for-input): * mail/mail-extr.el (mail-extract-address-components): * mail/sendmail.el (mail-mode): Reformat doc string.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/files.el4
-rw-r--r--lisp/international/ucs-tables.el4
-rw-r--r--lisp/mail/mail-extr.el7
-rw-r--r--lisp/mail/sendmail.el5
5 files changed, 20 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index eba974e2e49..e7b5669db61 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * files.el (save-buffer):
4 * international/ucs-tables.el (ucs-set-table-for-input):
5 * mail/mail-extr.el (mail-extract-address-components):
6 * mail/sendmail.el (mail-mode): Reformat doc string.
7
12005-12-09 Juri Linkov <juri@jurta.org> 82005-12-09 Juri Linkov <juri@jurta.org>
2 9
3 * isearch.el (isearch-highlight): Change main overlay priority 10 * isearch.el (isearch-highlight): Change main overlay priority
diff --git a/lisp/files.el b/lisp/files.el
index 32c278b98da..df78985e3be 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -3197,7 +3197,9 @@ on a DOS/Windows machine, it returns FILENAME in expanded form."
3197 ancestor)))))) 3197 ancestor))))))
3198 3198
3199(defun save-buffer (&optional args) 3199(defun save-buffer (&optional args)
3200 "Save current buffer in visited file if modified. Variations are described below. 3200 "Save current buffer in visited file if modified.
3201Variations are described below.
3202
3201By default, makes the previous version into a backup file 3203By default, makes the previous version into a backup file
3202 if previously requested or if this is the first save. 3204 if previously requested or if this is the first save.
3203Prefixed with one \\[universal-argument], marks this version 3205Prefixed with one \\[universal-argument], marks this version
diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el
index 8d0760563c5..a8ca220466a 100644
--- a/lisp/international/ucs-tables.el
+++ b/lisp/international/ucs-tables.el
@@ -2499,8 +2499,8 @@ See also command `unify-8859-on-encoding-mode' and the user option
2499;; normal-mode and minibuffer-setup-hook. 2499;; normal-mode and minibuffer-setup-hook.
2500(defun ucs-set-table-for-input (&optional buffer) 2500(defun ucs-set-table-for-input (&optional buffer)
2501 "Set up an appropriate `translation-table-for-input' for BUFFER. 2501 "Set up an appropriate `translation-table-for-input' for BUFFER.
2502BUFFER defaults to the current buffer. 2502BUFFER defaults to the current buffer. This function is
2503This function is automatically called directly at the end of `get-buffer-create'." 2503automatically called directly at the end of `get-buffer-create'."
2504 (when (and unify-8859-on-encoding-mode 2504 (when (and unify-8859-on-encoding-mode
2505 (not unify-8859-on-decoding-mode) 2505 (not unify-8859-on-decoding-mode)
2506 (char-table-p translation-table-for-input)) 2506 (char-table-p translation-table-for-input))
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el
index da5ec4bfda1..0f5aa1e18f7 100644
--- a/lisp/mail/mail-extr.el
+++ b/lisp/mail/mail-extr.el
@@ -699,9 +699,10 @@ Unless NO-REPLACE is true, at each of the positions in LIST-SYMBOL
699;;;###autoload 699;;;###autoload
700(defun mail-extract-address-components (address &optional all) 700(defun mail-extract-address-components (address &optional all)
701 "Given an RFC-822 address ADDRESS, extract full name and canonical address. 701 "Given an RFC-822 address ADDRESS, extract full name and canonical address.
702Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). 702Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no
703If no name can be extracted, FULL-NAME will be nil. Also see 703name can be extracted, FULL-NAME will be nil. Also see
704`mail-extr-ignore-single-names' and `mail-extr-ignore-realname-equals-mailbox-name'. 704`mail-extr-ignore-single-names' and
705`mail-extr-ignore-realname-equals-mailbox-name'.
705 706
706If the optional argument ALL is non-nil, then ADDRESS can contain zero 707If the optional argument ALL is non-nil, then ADDRESS can contain zero
707or more recipients, separated by commas, and we return a list of 708or more recipients, separated by commas, and we return a list of
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 4a4d2172c8b..40e678aa130 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -596,7 +596,10 @@ actually occur.")
596(define-derived-mode mail-mode text-mode "Mail" 596(define-derived-mode mail-mode text-mode "Mail"
597 "Major mode for editing mail to be sent. 597 "Major mode for editing mail to be sent.
598Like Text Mode but with these additional commands: 598Like Text Mode but with these additional commands:
599\\[mail-send] mail-send (send the message) \\[mail-send-and-exit] mail-send-and-exit 599
600\\[mail-send] mail-send (send the message)
601\\[mail-send-and-exit] mail-send-and-exit (send the message and exit)
602
600Here are commands that move to a header field (and create it if there isn't): 603Here are commands that move to a header field (and create it if there isn't):
601 \\[mail-to] move to To: \\[mail-subject] move to Subject: 604 \\[mail-to] move to To: \\[mail-subject] move to Subject:
602 \\[mail-cc] move to CC: \\[mail-bcc] move to BCC: 605 \\[mail-cc] move to CC: \\[mail-bcc] move to BCC: