aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/comint.el
Commit message (Collapse)AuthorAgeFilesLines
* Merge from emacs--rel--22Miles Bader2007-10-151-1/+1
|\ | | | | | | | | | | | | | | | | | | Patches applied: * emacs--rel--22 (patch 116-121) - Update from CVS Revision: [email protected]/emacs--devo--0--patch-889
| * (comint-password-prompt-regexp): Add 'LDAP'.Eli Zaretskii2007-10-131-1/+1
| |
| * (comint-mode): Don't set scroll-conservatively.Glenn Morris2007-09-021-2/+8
| |
* | (comint-mode): Don't set scroll-conservatively.Glenn Morris2007-09-021-2/+8
| |
* | * comint.el (comint-exec-1): Raise an error ifMichael Albinus2007-08-221-0/+2
| | | | | | | | | | | | | | `start-file-process' does not return a process object. * shell.el (shell): Prompt for `default-directory' if it is a remote file name, and if called with a prefix arg.
* | Merge from emacs--rel--22Miles Bader2007-07-261-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Patches applied: * emacs--rel--22 (patch 70-73) - Update from CVS 2007-07-25 Glenn Morris <[email protected]> * Relicense all FSF files to GPLv3 or later. Revision: [email protected]/emacs--devo--0--patch-828
| * Switch license to GPLv3 or later.Glenn Morris2007-07-251-1/+1
| |
| * (comint-simple-send): Concat newline before sending.Jason Rumney2007-07-221-6/+12
| | | | | | | | (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
* | (comint-simple-send): Concat newline before sending.Jason Rumney2007-07-151-6/+12
| | | | | | | | (comint-password-prompt-regexp): Recognize plink's passphrase prompt.
* | (comint-dynamic-complete-as-filename,comint-dynamic-list-filename-completions):Stefan Monnier2007-07-121-2/+2
| | | | | | | | Use read-file-name-completion-ignore-case.
* | * comint.el (make-comint, make-comint-in-buffer)Michael Albinus2007-07-101-10/+10
|/ | | | | | | (comint-exec-1): Replace `start-process' by `start-file-process'. * progmodes/compile.el (compilation-start): Revert redefining `start-process'.
* (comint-send-input): Widen the buffer first.Chong Yidong2007-04-021-2/+3
|
* (comint-proc-query, comint-dynamic-list-completions):Stefan Monnier2007-03-281-2/+2
| | | | | Fix calls to get-buffer-window to find windows in other frames. Reported by David Hansen <[email protected]>.
* (comint-arguments): Mark backslash-escaped chars.Chong Yidong2007-03-171-10/+26
| | | | (comint-delim-arg): Don't treat them as delimiters.
* (comint-read-input-ring): Use comint-input-ring-size from the comint bufferEli Zaretskii2007-02-231-1/+1
| | | | instead of the temporary one.
* Delete extra copy of `comint-copy-old-input' added in previous change toRomain Francoise2007-01-311-11/+0
| | | | this file.
* - Prevent non-keyword fontification by default.J.D. Smith2007-01-311-1/+12
|
* (comint-insert-input): Handle situation where the selected buffer isChong Yidong2007-01-291-9/+18
| | | | not the clicked buffer.
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* Comment change.Richard M. Stallman2006-12-171-1/+1
|
* Revert last change.Romain Francoise2006-12-091-3/+2
|
* (comint-insert-input): Delete obsolete comment.Romain Francoise2006-12-091-4/+3
| | | | Examine input field without moving point.
* (comint-exec-1): Provide Emacs version and `comint' in INSIDE_EMACS.Richard M. Stallman2006-11-281-1/+1
|
* (comint-exec-1): Set EMACS and INSIDE_EMACS to t.Chong Yidong2006-11-181-1/+2
|
* (comint-mode): Bind font-lock-defaults non-nil.Richard M. Stallman2006-09-281-1/+4
|
* * etc/NEWS: In terminal-oriented subshells, the EMACS environmentPaul Eggert2006-09-121-1/+2
| | | | | | | | | | | | | | | | | | variable now defaults to Emacs's absolute file name, instead of to "t". * etc/PROBLEMS: Adjust tcsh advice for this. * make-dist (EMACS): Exit and fail if the EMACS environment variable is set to something other than an absolute file name. * lisp/comint.el (comint-exec-1): Set EMACS to the full name of Emacs, not to "t". * lisp/progmodes/compile.el (compilation-start): Likewise. * lisp/progmodes/idlwave.el (idlwave-rescan-asynchronously): Don't use expand-file-name on invocation-directory, since this might mishandle special characters in invocation-directory. * man/faq.texi (Escape sequences in shell output): EMACS is now set to Emacs's absolute file name, not to "t". (^M in the shell buffer): Likewise. * man/misc.texi (Interactive Shell): Likewise.
* (comint-send-input): Do not add help-echo and mouse-face to input ifLuc Teirlinck2006-06-021-12/+12
| | | | `comint-use-prompt-regexp' is non-nil.
* (comint-kill-whole-line): Rename arg to count. FixReiner Steib2006-05-261-6/+6
| | | | doc string.
* (comint-insert-input): Just make it whenNick Roberts2006-05-101-29/+32
| | | | | | comint-use-prompt regexp is nil (default) and with the mouse. (comint-copy-old-input): Reinstate from 2004-06-23. (comint-mode-map): Bind C-c C-m to it.
* Revision: [email protected]/emacs--devo--0--patch-272Miles Bader2006-05-101-2/+1
| | | | (comint-insert-input): Remove redundant calls to setq and goto-char
* Revision: [email protected]/emacs--devo--0--patch-271Miles Bader2006-05-101-1/+1
| | | | Rename "field-at-point" to "field-at-pos"
* (comint-insert-input): Make it work when comint-use-prompt-regexp is t.Nick Roberts2006-05-101-22/+27
| | | | Use field-at-point.
* (comint-match-partial-filename): Doc fix.Romain Francoise2006-04-221-1/+1
|
* Remove C-c C-j binding.J.D. Smith2006-04-191-1/+0
|
* (comint-previous-input): Don't clobber input line when moving off eitherJ.D. Smith2006-04-181-7/+39
| | | | | | | | | | | end of the input history ring. (comint-delete-input): New function, used by `comint-previous-input' and others. (comint-previous-matching-input): Use `coming-delete-input'. Save the partial input if leaving the edit line. Goto point-max before deleting input to avoid partial input fragments hanging around. (comint-restore-input): New function, used by `comint-previous-input', and bound to "C-c C-j".
* (comint-dynamic-list-completions): Allow user to select *Completions* buffer.Nick Roberts2006-03-271-4/+3
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* (comint-insert-input): Use `posn-set-point' instead ofJohn Paul Wallington2005-11-171-1/+1
| | | | | `mouse-set-point' because the latter is not fbound when configured without X.
* (comint-send-input): Call `comint-update-fence' whenLuc Teirlinck2005-10-301-1/+5
| | | | | `comint-process-echoes' and `comint-prompt-read-only' are both non-nil, to avoid leftover read-only newline.
* (comint-redirect-subvert-readonly): Doc fix.Richard M. Stallman2005-10-021-2/+2
|
* (comint-show-output): Really set point at the beginning of the outputRomain Francoise2005-09-281-1/+5
| | | | when not using `comint-use-prompt-regexp'.
* (comint-file-name-prefix): Add autoload.Richard M. Stallman2005-08-251-0/+1
|
* (send-invisible): Identify buffer, if not selected.Richard M. Stallman2005-08-091-3/+9
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-061-1/+1
|
* (comint-use-prompt-regexp, comint-send-input, comint-source-default,Juanma Barranquero2005-07-211-30/+27
| | | | | | | | | | | | comint-extract-string, comint-get-source, comint-word, comint-completion, comint-source, comint-prompt-read-only, comint-update-fence): Fix typos in docstrings. (comint-use-prompt-regexp-instead-of-fields, comint-kill-output): Declare with define-obsolete-*-alias macros. (comint-previous-matching-input-from-input, comint-next-matching-input-from-input, comint-previous-matching-input, comint-next-matching-input, comint-forward-matching-input): Improve argument/docstring consistency.
* (comint-postoutput-scroll-to-bottom)Eli Zaretskii2005-07-081-2/+2
| | | | (comint-show-maximum-output): Take scroll-margin into consideration.
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (comint-completion, comint-source): Finsh `degroup' descriptions with period.Juanma Barranquero2005-07-041-4/+4
| | | | | (comint-dynamic-list-input-ring, comint-dynamic-list-completions): "?\ " -> "?\s".
* (comint-password-prompt-regexp): Accept ", try again".Richard M. Stallman2005-06-281-2/+2
|
* (comint-replace-by-expanded-filename, comint-prompt-regexp,Juanma Barranquero2005-06-161-5/+5
| | | | | comint-delimiter-argument-list, comint-preinput-scroll-to-bottom): Fix spelling in docstrings.