diff options
| author | Richard M. Stallman | 1999-11-26 17:34:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-11-26 17:34:46 +0000 |
| commit | c095ddb9a10e2a2898e61890e9c708c407d91130 (patch) | |
| tree | b711fdf8240f9408fc7fe0503935623dd857c46c | |
| parent | 995e028a96412b40adb92200ecd33dfcf784f448 (diff) | |
| download | emacs-c095ddb9a10e2a2898e61890e9c708c407d91130.tar.gz emacs-c095ddb9a10e2a2898e61890e9c708c407d91130.zip | |
(comint-preoutput-filter-functions): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 30 | ||||
| -rw-r--r-- | lisp/comint.el | 14 |
2 files changed, 41 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ea6c5d5a4d..b5fadede720 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 1999-11-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> | ||
| 2 | |||
| 3 | * comint.el (comint-preoutput-filter-functions): Doc fix. | ||
| 4 | |||
| 5 | 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu> | ||
| 6 | |||
| 7 | * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine): | ||
| 8 | Improve messages for capitalization of arg names, | ||
| 9 | for flag variables, for t and nil, for imperatives. | ||
| 10 | Call them imperatives rather than infinitives sans "to". | ||
| 11 | (checkdoc-common-verbs-wrong-voice): Add "moves". | ||
| 12 | (checkdoc-message-text-engine): Improve messages for y-or-n-p. | ||
| 13 | |||
| 14 | * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine): | ||
| 15 | Don't convert comments from 3-semicolon to 2-semicolon. | ||
| 16 | That is a matter of style. | ||
| 17 | (checkdoc-triple-semi-comment-check-flag): Variable deleted. | ||
| 18 | (checkdoc-comments): Don't bind that variable. | ||
| 19 | |||
| 20 | 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu> | ||
| 21 | |||
| 22 | * files.el (write-file-hooks): Doc fix. | ||
| 23 | |||
| 1 | 1999-11-26 Gerd Moellmann <gerd@gnu.org> | 24 | 1999-11-26 Gerd Moellmann <gerd@gnu.org> |
| 2 | 25 | ||
| 3 | * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='. | 26 | * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='. |
| @@ -571,6 +594,7 @@ | |||
| 571 | * progmodes/compile.el (compilation-error-regexp-alist): | 594 | * progmodes/compile.el (compilation-error-regexp-alist): |
| 572 | Undo previous change. | 595 | Undo previous change. |
| 573 | 596 | ||
| 597 | >>>>>>> 1.97 | ||
| 574 | 1999-10-28 Dave Love <fx@gnu.org> | 598 | 1999-10-28 Dave Love <fx@gnu.org> |
| 575 | 599 | ||
| 576 | * help.el (help-follow): Make arg optional again and really | 600 | * help.el (help-follow): Make arg optional again and really |
| @@ -606,6 +630,11 @@ | |||
| 606 | * ange-ftp.el (ange-ftp-insert-file-contents): Don't change | 630 | * ange-ftp.el (ange-ftp-insert-file-contents): Don't change |
| 607 | last-coding-system-used by the call of ange-ftp-set-ascii-mode. | 631 | last-coding-system-used by the call of ange-ftp-set-ascii-mode. |
| 608 | 632 | ||
| 633 | 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu> | ||
| 634 | |||
| 635 | * window.el (walk-windows): If ALL-FRAMES is a frame, | ||
| 636 | start on that frame. Use save-selected-window. | ||
| 637 | |||
| 609 | 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> | 638 | 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
| 610 | 639 | ||
| 611 | * emacs-lisp/advice.el (ad-activate-internal): Renamed from | 640 | * emacs-lisp/advice.el (ad-activate-internal): Renamed from |
| @@ -953,6 +982,7 @@ | |||
| 953 | * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq' | 982 | * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq' |
| 954 | instead of `eql'. | 983 | instead of `eql'. |
| 955 | 984 | ||
| 985 | >>>>>>> 1.86 | ||
| 956 | 1999-10-14 Stefan Monnier <monnier@cs.yale.edu> | 986 | 1999-10-14 Stefan Monnier <monnier@cs.yale.edu> |
| 957 | 987 | ||
| 958 | * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name): | 988 | * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name): |
diff --git a/lisp/comint.el b/lisp/comint.el index c48182b0988..6201fc72850 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1339,9 +1339,17 @@ Similarly for Soar, Scheme, etc." | |||
| 1339 | (run-hook-with-args 'comint-output-filter-functions ""))))) | 1339 | (run-hook-with-args 'comint-output-filter-functions ""))))) |
| 1340 | 1340 | ||
| 1341 | (defvar comint-preoutput-filter-functions nil | 1341 | (defvar comint-preoutput-filter-functions nil |
| 1342 | "Functions to call before output is inserted into the buffer. | 1342 | "List of functions to call before inserting Comint output into the buffer. |
| 1343 | These functions get one argument, a string containing the text to be | 1343 | Each function gets one argument, a string containing the text received |
| 1344 | inserted. They return the string as it should be inserted. | 1344 | from the subprocess. It should return the string to insert, perhaps |
| 1345 | the same string that was received, or perhaps a modified or transformed | ||
| 1346 | string. | ||
| 1347 | |||
| 1348 | The functions on the list are called sequentially, and each one is | ||
| 1349 | given the string returned by the previous one. The string returned by | ||
| 1350 | the last function is the text that is actually inserted in the | ||
| 1351 | redirection buffer.") | ||
| 1352 | |||
| 1345 | 1353 | ||
| 1346 | This variable is buffer-local.") | 1354 | This variable is buffer-local.") |
| 1347 | 1355 | ||