Show
Ignore:
Timestamp:
2005年11月01日 07時08分22秒 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-CVS_HEAD/lisp/comint.el

    r3892 r3939  
    15511551                  (let ((inhibit-read-only t)) 
    15521552                    (delete-region comint-last-input-end 
    1553                                    (+ comint-last-input-end echo-len)))))) 
     1553                                   (+ comint-last-input-end echo-len)) 
     1554                    (when comint-prompt-read-only 
     1555                      (save-excursion 
     1556                        (goto-char comint-last-input-end) 
     1557                        (comint-update-fence))))))) 
    15541558 
    15551559          ;; This used to call comint-output-filter-functions, 
     
    31103114 
    31113115(defvar comint-redirect-subvert-readonly nil 
    3112   "Non-nil means comint-redirect can insert into otherwise-readonly buffers. 
    3113 The readonly status is toggled around insertion. 
     3116  "Non-nil means `comint-redirect' can insert into read-only buffers. 
     3117This works by binding `inhibit-read-only' around the insertion. 
    31143118This is useful, for instance, for insertion into Help mode buffers. 
    31153119You probably want to set it locally to the output buffer.")