aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-01-07 12:53:36 +0000
committerDave Love2000-01-07 12:53:36 +0000
commit7683b5c2bf0ab232b5a3b7d37f693a5af3928b57 (patch)
tree8df2b6e139e6d065f4085b139d45d7d074ef76df
parentc1475eae0b7cbd19e7fd6f596bb0d61d75c2e843 (diff)
downloademacs-7683b5c2bf0ab232b5a3b7d37f693a5af3928b57.tar.gz
emacs-7683b5c2bf0ab232b5a3b7d37f693a5af3928b57.zip
(with-syntax-table): Fix backquoting.
(read-mail-command): New option.
-rw-r--r--lisp/simple.el22
1 files changed, 16 insertions, 6 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 222151c24e5..c25f6f335c5 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1,6 +1,6 @@
1;;; simple.el --- basic editing commands for Emacs 1;;; simple.el --- basic editing commands for Emacs
2 2
3;; Copyright (C) 1985, 86, 87, 93, 94, 95, 96, 97, 98, 1999 3;; Copyright (C) 1985, 86, 87, 93, 94, 95, 96, 97, 98, 99, 2000
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; This file is part of GNU Emacs. 6;; This file is part of GNU Emacs.
@@ -2638,7 +2638,7 @@ This function is called with no args with point at the beginning of
2638the comment's starting delimiter.") 2638the comment's starting delimiter.")
2639 2639
2640(defvar comment-indent-function 2640(defvar comment-indent-function
2641 '(lambda () comment-column) 2641 (lambda () comment-column)
2642 "Function to compute desired indentation for a comment. 2642 "Function to compute desired indentation for a comment.
2643This function is called with no args with point at the beginning of 2643This function is called with no args with point at the beginning of
2644the comment's starting delimiter.") 2644the comment's starting delimiter.")
@@ -3498,6 +3498,16 @@ use either M-x customize or the function `set-input-mode'."
3498 :link '(custom-manual "Single-Byte European Support") 3498 :link '(custom-manual "Single-Byte European Support")
3499 :group 'keyboard) 3499 :group 'keyboard)
3500 3500
3501(defcustom read-mail-command 'rmail
3502 "*Your preference for a mail reading package.
3503This is used by some keybindings which support reading mail."
3504 :type '(choice (function-item rmail)
3505 (function-item gnus)
3506 (function-item mh-rmail)
3507 (function :tag "Other"))
3508 :version "21.1"
3509 :group 'mail)
3510
3501(defcustom mail-user-agent 'sendmail-user-agent 3511(defcustom mail-user-agent 'sendmail-user-agent
3502 "*Your preference for a mail composition package. 3512 "*Your preference for a mail composition package.
3503Various Emacs Lisp packages (e.g. reporter) require you to compose an 3513Various Emacs Lisp packages (e.g. reporter) require you to compose an
@@ -3506,9 +3516,9 @@ mail-sending package you prefer.
3506 3516
3507Valid values include: 3517Valid values include:
3508 3518
3509 sendmail-user-agent -- use the default Emacs Mail package 3519 `sendmail-user-agent' -- use the default Emacs Mail package
3510 mh-e-user-agent -- use the Emacs interface to the MH mail system 3520 `mh-e-user-agent' -- use the Emacs interface to the MH mail system
3511 message-user-agent -- use the GNUS mail sending package 3521 `message-user-agent' -- use the GNUS mail sending package
3512 3522
3513Additional valid symbols may be available; check with the author of 3523Additional valid symbols may be available; check with the author of
3514your package for details." 3524your package for details."
@@ -4130,7 +4140,7 @@ saved table is restored, even in case of an abnormal exit.
4130Value is what BODY returns." 4140Value is what BODY returns."
4131 (let ((old-table (gensym)) 4141 (let ((old-table (gensym))
4132 (old-buffer (gensym))) 4142 (old-buffer (gensym)))
4133 '(let ((,old-table (syntax-table)) 4143 `(let ((,old-table (syntax-table))
4134 (,old-buffer (current-buffer))) 4144 (,old-buffer (current-buffer)))
4135 (unwind-protect 4145 (unwind-protect
4136 (progn 4146 (progn