aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-11-26 17:34:46 +0000
committerRichard M. Stallman1999-11-26 17:34:46 +0000
commitc095ddb9a10e2a2898e61890e9c708c407d91130 (patch)
treeb711fdf8240f9408fc7fe0503935623dd857c46c
parent995e028a96412b40adb92200ecd33dfcf784f448 (diff)
downloademacs-c095ddb9a10e2a2898e61890e9c708c407d91130.tar.gz
emacs-c095ddb9a10e2a2898e61890e9c708c407d91130.zip
(comint-preoutput-filter-functions): Doc fix.
-rw-r--r--lisp/ChangeLog30
-rw-r--r--lisp/comint.el14
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 @@
11999-11-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2
3 * comint.el (comint-preoutput-filter-functions): Doc fix.
4
51999-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
201999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
21
22 * files.el (write-file-hooks): Doc fix.
23
11999-11-26 Gerd Moellmann <gerd@gnu.org> 241999-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
5741999-10-28 Dave Love <fx@gnu.org> 5981999-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
6331999-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
6091999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> 6381999-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
9561999-10-14 Stefan Monnier <monnier@cs.yale.edu> 9861999-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.
1343These functions get one argument, a string containing the text to be 1343Each function gets one argument, a string containing the text received
1344inserted. They return the string as it should be inserted. 1344from the subprocess. It should return the string to insert, perhaps
1345the same string that was received, or perhaps a modified or transformed
1346string.
1347
1348The functions on the list are called sequentially, and each one is
1349given the string returned by the previous one. The string returned by
1350the last function is the text that is actually inserted in the
1351redirection buffer.")
1352
1345 1353
1346This variable is buffer-local.") 1354This variable is buffer-local.")
1347 1355