comparison lisp/simple.el @ 87453:cdd30283527d

Merge from emacs--rel--22 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-966
author Miles Bader <miles@gnu.org>
date Fri, 28 Dec 2007 22:26:14 +0000
parents 5ef4fbedb516 a00fd366de50
children 107ccd98fa12 56a72e2bd635
comparison
equal deleted inserted replaced
87452:8e0e0bc0c5ab 87453:cdd30283527d
1164 (error "There are no previous complex commands to repeat"))))) 1164 (error "There are no previous complex commands to repeat")))))
1165 1165
1166 (defvar minibuffer-history nil 1166 (defvar minibuffer-history nil
1167 "Default minibuffer history list. 1167 "Default minibuffer history list.
1168 This is used for all minibuffer input 1168 This is used for all minibuffer input
1169 except when an alternate history list is specified.") 1169 except when an alternate history list is specified.
1170
1171 Maximum length of the history list is determined by the value
1172 of `history-length', which see.")
1170 (defvar minibuffer-history-sexp-flag nil 1173 (defvar minibuffer-history-sexp-flag nil
1171 "Control whether history list elements are expressions or strings. 1174 "Control whether history list elements are expressions or strings.
1172 If the value of this variable equals current minibuffer depth, 1175 If the value of this variable equals current minibuffer depth,
1173 they are expressions; otherwise they are strings. 1176 they are expressions; otherwise they are strings.
1174 \(That convention is designed to do the right thing for 1177 \(That convention is designed to do the right thing for
1899 :warning) 1902 :warning)
1900 (setq buffer-undo-list nil) 1903 (setq buffer-undo-list nil)
1901 t)) 1904 t))
1902 1905
1903 (defvar shell-command-history nil 1906 (defvar shell-command-history nil
1904 "History list for some commands that read shell commands.") 1907 "History list for some commands that read shell commands.
1908
1909 Maximum length of the history list is determined by the value
1910 of `history-length', which see.")
1905 1911
1906 (defvar shell-command-switch "-c" 1912 (defvar shell-command-switch "-c"
1907 "Switch used to have the shell execute its command line argument.") 1913 "Switch used to have the shell execute its command line argument.")
1908 1914
1909 (defvar shell-command-default-error-buffer nil 1915 (defvar shell-command-default-error-buffer nil
5013 (list nil nil nil current-prefix-arg)) 5019 (list nil nil nil current-prefix-arg))
5014 (compose-mail to subject other-headers continue 5020 (compose-mail to subject other-headers continue
5015 'switch-to-buffer-other-frame yank-action send-actions)) 5021 'switch-to-buffer-other-frame yank-action send-actions))
5016 5022
5017 (defvar set-variable-value-history nil 5023 (defvar set-variable-value-history nil
5018 "History of values entered with `set-variable'.") 5024 "History of values entered with `set-variable'.
5025
5026 Maximum length of the history list is determined by the value
5027 of `history-length', which see.")
5019 5028
5020 (defun set-variable (variable value &optional make-local) 5029 (defun set-variable (variable value &optional make-local)
5021 "Set VARIABLE to VALUE. VALUE is a Lisp object. 5030 "Set VARIABLE to VALUE. VALUE is a Lisp object.
5022 VARIABLE should be a user option variable name, a Lisp variable 5031 VARIABLE should be a user option variable name, a Lisp variable
5023 meant to be customized by users. You should enter VALUE in Lisp syntax, 5032 meant to be customized by users. You should enter VALUE in Lisp syntax,