Show
Ignore:
Timestamp:
2006年05月13日 11時31分18秒 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/simple.el

    r4073 r4079  
    11571157recursive uses of the minibuffer.)") 
    11581158(setq minibuffer-history-variable 'minibuffer-history) 
    1159 (setq minibuffer-history-position nil) 
     1159(setq minibuffer-history-position nil)  ;; Defvar is in C code. 
    11601160(defvar minibuffer-history-search-history nil) 
    11611161 
     
    12821282 
    12831283(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. 
     1285With argument N, it uses the Nth following element." 
    12851286  (interactive "p") 
    12861287  (or (zerop n) 
     
    13251326 
    13261327(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. 
     1329With argument N, it uses the Nth previous element." 
    13281330  (interactive "p") 
    13291331  (next-history-element (- n))) 
     
    36453647        ;; with intangibility processing enabled. 
    36463648 
    3647         (goto-char (point-min)) 
     3649        ;; Avoid calling point-entered and point-left. 
     3650        (goto-char new) 
    36483651        (let ((inhibit-point-motion-hooks nil)) 
    36493652          (goto-char new) 
     
    40574060  :group 'fill) 
    40584061(make-variable-buffer-local 'fill-prefix) 
     4062;;;###autoload(put 'fill-prefix 'safe-local-variable 'string-or-null-p) 
    40594063 
    40604064(defcustom auto-fill-inhibit-regexp nil