Changeset 4079 for trunk/lisp/simple.el
- Timestamp:
- 2006年05月13日 11時31分18秒 (3 years ago)
- Files:
-
- trunk/lisp/simple.el (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/simple.el
r4073 r4079 1157 1157 recursive uses of the minibuffer.)") 1158 1158 (setq minibuffer-history-variable 'minibuffer-history) 1159 (setq minibuffer-history-position nil) 1159 (setq minibuffer-history-position nil) ;; Defvar is in C code. 1160 1160 (defvar minibuffer-history-search-history nil) 1161 1161 … … 1282 1282 1283 1283 (defun next-history-element (n) 1284 "Insert the next element of the minibuffer history into the minibuffer." 1284 "Puts next element of the minibuffer history in the minibuffer. 1285 With argument N, it uses the Nth following element." 1285 1286 (interactive "p") 1286 1287 (or (zerop n) … … 1325 1326 1326 1327 (defun previous-history-element (n) 1327 "Inserts the previous element of the minibuffer history into the minibuffer." 1328 "Puts previous element of the minibuffer history in the minibuffer. 1329 With argument N, it uses the Nth previous element." 1328 1330 (interactive "p") 1329 1331 (next-history-element (- n))) … … 3645 3647 ;; with intangibility processing enabled. 3646 3648 3647 (goto-char (point-min)) 3649 ;; Avoid calling point-entered and point-left. 3650 (goto-char new) 3648 3651 (let ((inhibit-point-motion-hooks nil)) 3649 3652 (goto-char new) … … 4057 4060 :group 'fill) 4058 4061 (make-variable-buffer-local 'fill-prefix) 4062 ;;;###autoload(put 'fill-prefix 'safe-local-variable 'string-or-null-p) 4059 4063 4060 4064 (defcustom auto-fill-inhibit-regexp nil
