? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /usr/share/emacs/24.3/lisp/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : //usr/share/emacs/24.3/lisp/comint.elc

;ELC
;;; Compiled by mockbuild@buildfarm06-new.corp.cloudlinux.com on Fri Oct 11 10:06:12 2024
;;; from file /builddir/build/BUILD/emacs-24.3/lisp/comint.el
;;; in Emacs version 24.3.1
;;; with all optimizations.

;;; This file uses dynamic docstrings, first added in Emacs 19.29.

;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(byte-code "\300\301!\210\300\302!\210\300\303!\210\304\305\306\307\310\311%\210\304\312\306\313\310\305%\210\304\314\306\315\316\317\310\305&\207" [require ring ansi-color regexp-opt custom-declare-group comint nil "General command interpreter in a window stuff." :group processes comint-completion "Completion facilities in comint." comint-source "Source finding facilities in comint." :prefix "comint-"] 8)
#@454 Regexp to recognize prompts in the inferior process.
Defaults to "^", the null string at BOL.

This variable is only used if the variable
`comint-use-prompt-regexp' is non-nil.

Good choices:
  Canonical Lisp: "^[^> \n]*>+:? *" (Lucid, franz, kcl, T, cscheme, oaklisp)
  Lucid Common Lisp: "^\\(>\\|\\(->\\)+\\) *"
  franz: "^\\(->\\|<[0-9]*>:\\) *"
  kcl: "^>+ *"
  shell: "^[^#$%>\n]*[#$%>] *"
  T: "^>+ *"

This is a good thing to set in mode hooks.
(defvar comint-prompt-regexp "^" (#$ . 961))
(byte-code "\300\301\302\303\304DD\305\306\307\310\311\312\313&	\207" [custom-declare-variable comint-prompt-read-only funcall function #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, the comint prompt is read only.\nThe read only region includes the newline before the prompt.\nThis does not affect existing prompts.\nCertain derived modes may override this option.\n\nIf you set this option to t, then the safe way to temporarily\noverride the read-only-ness of comint prompts is to call\n`comint-kill-whole-line' or `comint-kill-region' with no\nnarrowing in effect.  This way you will be certain that none of\nthe remaining prompts will be accidentally messed up.  You may\nwish to put something like the following in your init file:\n\n(add-hook 'comint-mode-hook\n	  (lambda ()\n	    (define-key comint-mode-map \"\\C-w\" 'comint-kill-region)\n	    (define-key comint-mode-map [C-S-backspace]\n	      'comint-kill-whole-line)))\n\nIf you sometimes use comint-mode on text-only terminals or with `emacs -nw',\nyou might wish to use another binding for `comint-kill-whole-line'." :type boolean :group comint :version "22.1"] 10)
#@382 List of characters to recognize as separate arguments in input.
Strings comprising a character in this list will separate the arguments
surrounding them, and also be regarded as arguments in their own right (unlike
whitespace).  See `comint-arguments'.
Defaults to the empty list.

For shells, a good value is (?\| ?& ?< ?> ?\( ?\) ?;).

This is a good thing to set in mode hooks.
(defvar comint-delimiter-argument-list nil (#$ . 2599))
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\312\313\314\315\310\311%\210\312\316\317\320\310\311%\210\300\321\302\303\322DD\323\306\324\310\311&\210\300\325\302\303\326DD\327\306\330\310\311&\210\300\331\302\303\332DD\333\306\334\310\311&\210\300\335\302\303\336DD\337\306\340\310\311&\210\341\342\335\"\210\300\343\302\303\344DD\345\306\324\310\311&\210\300\346\302\303\347DD\350\306\351\310\311&\210\300\352\302\303\353DD\354\306\351\310\311\355\356&	\207" [custom-declare-variable comint-input-autoexpand funcall function #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, expand input command history references on completion.\nThis mirrors the optional behavior of tcsh (its autoexpand and histlist).\n\nIf the value is `input', then the expansion is seen on input.\nIf the value is `history', then the expansion is only when inserting\ninto the buffer's input ring.  See also `comint-magic-space' and\n`comint-dynamic-complete'.\n\nThis variable is buffer-local." :type (choice (const :tag "off" nil) (const input) (const history) (other :tag "on" t)) :group comint custom-declare-face comint-highlight-input ((t (:weight bold))) "Face to use to highlight user input." comint-highlight-prompt ((t :inherit minibuffer-prompt)) "Face to use to highlight prompts." comint-input-ignoredups #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, don't add input matching the last on the input ring.\nThis mirrors the optional behavior of bash.\n\nThis variable is buffer-local." boolean comint-input-ring-file-name #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, name of the file to read/write input history.\nSee also `comint-read-input-ring' and `comint-write-input-ring'.\n`comint-mode' makes this a buffer-local variable.  You probably want\nto set this in a mode hook, rather than customize the default value." (choice (const :tag "nil" nil) file) comint-scroll-to-bottom-on-input #[0 "\300\207" [nil] 1 "\n\n(fn)"] "Controls whether input to interpreter causes window to scroll.\nIf nil, then do not scroll.  If t or `all', scroll all windows showing buffer.\nIf `this', scroll only the selected window.\n\nThe default is nil.\n\nSee `comint-preinput-scroll-to-bottom'.  This variable is buffer-local." (choice (const :tag "off" nil) (const t) (const all) (const this)) comint-move-point-for-output #[0 "\300\207" [nil] 1 "\n\n(fn)"] "Controls whether interpreter output moves point to the end of the output.\nIf nil, then output never moves point to the output.\n (If the output occurs at point, it is inserted before point.)\nIf t or `all', move point in all windows showing the buffer.\nIf `this', move point only the selected window.\nIf `others', move point only in other windows, not in the selected window.\n\nThe default is nil.\n\nSee the variable `comint-scroll-show-maximum-output' and the function\n`comint-postoutput-scroll-to-bottom'.\nThis variable is buffer-local in all Comint buffers." (choice (const :tag "off" nil) (const t) (const all) (const this) (const others)) defvaralias comint-scroll-to-bottom-on-output comint-scroll-show-maximum-output #[0 "\300\207" [t] 1 "\n\n(fn)"] "Controls how to scroll due to interpreter output.\nThis variable applies when point is at the end of the buffer\n(either because it was originally there, or because\n`comint-move-point-for-output' said to move it there)\nand output from the subprocess is inserted.\n\nNon-nil means scroll so that the window is full of text\nand point is on the last line.  A value of nil\nmeans don't do anything special--scroll normally.\n\nSee also the variable `comint-move-point-for-output' and the function\n`comint-postoutput-scroll-to-bottom'.\nThis variable is buffer-local in all Comint buffers." comint-buffer-maximum-size #[0 "\300\207" [1024] 1 "\n\n(fn)"] "The maximum size in lines for Comint buffers.\nComint buffers are truncated from the top to be no greater than this number, if\nthe function `comint-truncate-buffer' is on `comint-output-filter-functions'." integer comint-input-ring-size #[0 "\300\207" [500] 1 "\n\n(fn)"] "Size of the input history ring in `comint-mode'." :version "23.2"] 10)
#@49 Separator between commands in the history file.
(defvar comint-input-ring-separator "\n" (#$ . 7161))
#@76 Regexp for history entries that should be ignored when Comint initializes.
(defvar comint-input-history-ignore "^#" (#$ . 7269))
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\300\312\302\303\313DD\314\315\316\306\317\310\311&	\207" [custom-declare-variable comint-process-echoes funcall function #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, assume that the subprocess echoes any input.\nIf so, delete one copy of the input so that only one copy eventually\nappears in the buffer.\n\nThis variable is buffer-local." :type boolean :group comint comint-password-prompt-regexp #[0 "\300\207" ["\\(^ *\\|\\( SMB\\|'s\\|Bad\\|CVS\\|Enter\\(?: \\(?:\\(?:sam\\|th\\)e\\)\\)?\\|Kerberos\\|LDAP\\|New\\|Old\\|Repeat\\|UNIX\\|\\[sudo]\\|enter\\(?: \\(?:\\(?:sam\\|th\\)e\\)\\)?\\|login\\|new\\|old\\) +\\)\\(?:Pass\\(?: phrase\\|phrase\\|word\\)\\|Response\\|pass\\(?: phrase\\|phrase\\|word\\)\\)\\(?:\\(?:, try\\)? *again\\| (empty for no passphrase)\\| (again)\\)?\\(?: for [^:]+\\)?:\\s *\\'"] 1 "\n\n(fn)"] "Regexp matching prompts for passwords in the inferior process.\nThis is used by `comint-watch-for-password-prompt'." :version "24.1" regexp] 10)
#@412 Function that returns old text in Comint mode.
This function is called when return is typed while the point is in old
text.  It returns the text to be submitted as process input.  The
default is `comint-get-old-input-default', which either grabs the
current input field or grabs the current line and strips off leading
text matching `comint-prompt-regexp', depending on the value of
`comint-use-prompt-regexp'.
(defvar comint-get-old-input 'comint-get-old-input-default (#$ . 8441))
#@173 List of functions called to perform completion.
Works like `completion-at-point-functions'.
See also `comint-dynamic-complete'.

This is a good thing to set in mode hooks.
(defvar comint-dynamic-complete-functions '(comint-c-a-p-replace-by-expanded-history comint-filename-completion) (#$ . 8931))
#@203 Predicate for filtering additions to input history.
Takes one argument, the input.  If non-nil, the input may be saved on the input
history list.  Default is to save anything that isn't all whitespace.
(defvar comint-input-filter #[257 "\300\301\"?\207" [string-match "\\`\\s *\\'"] 4 "\n\n(fn STR)"] (#$ . 9236))
#@128 Abnormal hook run before input is sent to the process.
These functions get one argument, a string containing the text to send.
(defvar comint-input-filter-functions nil (#$ . 9558))
#@529 Functions to call after output is inserted into the buffer.
One possible function is `comint-postoutput-scroll-to-bottom'.
These functions get one argument, a string containing the text as originally
inserted.  Note that this might not be the same as the buffer contents between
`comint-last-output-start' and the buffer's `process-mark', if other filter
functions have already modified the buffer.

See also `comint-preoutput-filter-functions'.

You can use `add-hook' to add functions to this list
either globally or locally.
(defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) (#$ . 9747))
#@75 Non-nil directs the `comint-input-sender' function not to send a newline.
(defvar comint-input-sender-no-newline nil (#$ . 10430))
#@383 Function to actually send to PROCESS the STRING submitted by user.
Usually this is just `comint-simple-send', but if your mode needs to
massage the input string, put a different function here.
`comint-simple-send' just sends the string plus a newline.
(If `comint-input-sender-no-newline' is non-nil, it omits the newline.)
This is called from the user command `comint-send-input'.
(defvar comint-input-sender 'comint-simple-send (#$ . 10568))
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\312\313\314\315#\210\316\211\2037\211@\313N\2030\314N\2040\317\314\313N#\210A\266\202\202\210\320\313\314\321#\210\300\314\302\303\322DD\323\306\307\310\311&\210\300\324\302\303\325DD\326\306\327\310\311&\210\300\330\302\303\331DD\332\306\327\310\311&\207" [custom-declare-variable comint-eol-on-send funcall function #[0 "\300\207" [t] 1 "\n\n(fn)"] "Non-nil means go to the end of the line before sending input.\nSee `comint-send-input'." :type boolean :group comint defvaralias comint-use-prompt-regexp-instead-of-fields comint-use-prompt-regexp nil (saved-value saved-variable-comment) put make-obsolete-variable "22.1" #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, use `comint-prompt-regexp' to recognize prompts.\nIf nil, then program output and user-input are given different `field'\nproperties, which Emacs commands can use to distinguish them (in\nparticular, common movement commands such as `beginning-of-line'\nrespect field boundaries in a natural way)." comint-mode-hook #[0 "\300\207" [nil] 1 "\n\n(fn)"] "Hook run upon entry to `comint-mode'.\nThis is run before the process is cranked up." hook comint-exec-hook #[0 "\300\207" [nil] 1 "\n\n(fn)"] "Hook run each time a process is exec'd by `comint-exec'.\nThis is called after the process is cranked up.  It is useful for things that\nmust be done each time a process is executed in a Comint mode buffer (e.g.,\n`(process-kill-without-query)').  In contrast, the `comint-mode-hook' is only\nexecuted once when the buffer is created."] 8)
(defvar comint-mode-map (byte-code "\301 \302\303\304#\210\302\305\306#\210\302\307\304#\210\302\310\306#\210\302\311\312#\210\302\313\314#\210\302\315\316#\210\302\317\320#\210\302\321\322#\210\302\323\324#\210\302\325\326#\210\302\327\326#\210\302\330\331#\210\302\332\333#\210\302\334\335#\210\302\336\337#\210\302\340\341#\210\302\342\343#\210\302\344\345#\210\302\346\347#\210\302\350\351#\210\302\352\353#\210\302\354\320#\210\302\355\356#\210\302\357\360#\210\302\361\362#\210\302\363\364#\210\302\365\366#\210\302\367\370#\210\302\371\372#\210\302\373\374#\210\302\375\376\301\376!B#\210\302\377\201@#\210\302\201A\201B#\210\302\201C\201D#\210\302\201E\201F#\210\302\201G\201H\301\201H!B#\210\302\201I\201J#\210\302\201K\201L#\210\302\201M\201N#\210\302\201O\201P#\210\302\201Q\201R#\210\302\201S\201T#\210\302\201U\201V#\210\302\201W\201X#\210\302\201Y\201Z#\210\302\201[\201\\#\210\302\201]\201^#\210\302\201_\201`#\210\302\201a\201b#\210\302\201c\201d#\210\302\201e\201f#\210\302\201g\201h#\210\302\201i\201j#\210\302\201k\201l#\210\302\201m\201n#\210\302\201o\201p#\210\302\201q\201r#\210\301\201s!\302\201t\201sB#\210\302\201u\201v#\210\302\201w\201x#\210\302\201y\201z#\210\302\201{\201|#\210\302\201}\201~#\210\302\201\201\200#\266\201\201\201\202\"\211\207" [menu-bar-final-items make-sparse-keymap define-key "p" comint-previous-input "n" comint-next-input [C-up] [C-down] "r" comint-history-isearch-backward-regexp [3 134217842] comint-previous-matching-input-from-input [3 134217843] comint-next-matching-input-from-input "\f" comint-show-output "
" comint-send-input "" comint-delchar-or-maybe-eof [delete] delete-char [kp-delete] " " comint-accumulate "" comint-get-next-from-history "" comint-bol-or-process-mark "" comint-kill-input "" backward-kill-word "" comint-interrupt-subjob "" comint-stop-subjob "" comint-quit-subjob "
" comint-copy-old-input "" comint-delete-output "" "" comint-show-maximum-output "\f" comint-dynamic-list-input-ring "" comint-next-prompt "" comint-previous-prompt "" comint-send-eof "" comint-write-output "." comint-insert-previous-argument [mouse-2] comint-insert-input [menu-bar completion] "Complete" [menu-bar completion complete-expand] ("Expand File Name" . comint-replace-by-expanded-filename) [menu-bar completion complete-listing] ("File Completion Listing" . comint-dynamic-list-filename-completions) [menu-bar completion complete-file] ("Complete File Name" . comint-dynamic-complete-filename) [menu-bar completion complete] ("Complete at Point" . completion-at-point) [menu-bar inout] "In/Out" [menu-bar inout delete-output] ("Delete Current Output Group" . comint-delete-output) [menu-bar inout append-output-to-file] ("Append Current Output Group to File" . comint-append-output-to-file) [menu-bar inout write-output] ("Write Current Output Group to File" . comint-write-output) [menu-bar inout next-prompt] ("Forward Output Group" . comint-next-prompt) [menu-bar inout previous-prompt] ("Backward Output Group" . comint-previous-prompt) [menu-bar inout show-maximum-output] ("Show Maximum Output" . comint-show-maximum-output) [menu-bar inout show-output] ("Show Current Output Group" . comint-show-output) [menu-bar inout kill-input] ("Kill Current Input" . comint-kill-input) [menu-bar inout copy-input] ("Copy Old Input" . comint-copy-old-input) [menu-bar inout history-isearch-backward-regexp] ("Isearch Input Regexp Backward..." . comint-history-isearch-backward-regexp) [menu-bar inout history-isearch-backward] ("Isearch Input String Backward..." . comint-history-isearch-backward) [menu-bar inout forward-matching-history] ("Forward Matching Input..." . comint-forward-matching-input) [menu-bar inout backward-matching-history] ("Backward Matching Input..." . comint-backward-matching-input) [menu-bar inout next-matching-history] ("Next Matching Input..." . comint-next-matching-input) [menu-bar inout previous-matching-history] ("Previous Matching Input..." . comint-previous-matching-input) [menu-bar inout next-matching-history-from-input] ("Next Matching Current Input" . comint-next-matching-input-from-input) [menu-bar inout previous-matching-history-from-input] ("Previous Matching Current Input" . comint-previous-matching-input-from-input) [menu-bar inout next-history] ("Next Input" . comint-next-input) [menu-bar inout previous-history] ("Previous Input" . comint-previous-input) [menu-bar inout list-history] ("List Input History" . comint-dynamic-list-input-ring) [menu-bar inout expand-history] ("Expand History Before Point" . comint-replace-by-expanded-history) "Signals" [menu-bar signals] [eof] ("EOF" . comint-send-eof) [kill] ("KILL" . comint-kill-subjob) [quit] ("QUIT" . comint-quit-subjob) [cont] ("CONT" . comint-continue-subjob) [stop] ("STOP" . comint-stop-subjob) [break] ("BREAK" . comint-interrupt-subjob) append (completion inout signals)] 7))
#@126 Non-nil if communications via pty; false if by pipe.  Buffer local.
This is to work around a bug in Emacs process signaling.
(defvar comint-ptyp t (#$ . 17628))
(defvar comint-input-ring nil)
(defvar comint-last-input-start nil)
(defvar comint-last-input-end nil)
(defvar comint-last-output-start nil)
#@40 Index of last matched history element.
(defvar comint-input-ring-index nil (#$ . 17936))
#@47 Input previously used to match input history.
(defvar comint-matching-input-from-input-string "" (#$ . 18031))
#@105 Last input ring index which you copied.
This is to support the command \[comint-get-next-from-history].
(defvar comint-save-input-ring-index nil (#$ . 18149))
#@116 Non-nil if you are accumulating input lines to send as input together.
The command \[comint-accumulate] sets this.
(defvar comint-accum-marker nil (#$ . 18315))
#@35 Stored input for history cycling.
(defvar comint-stored-incomplete-input nil (#$ . 18482))
(byte-code "\300\301\302\303#\210\300\304\305\306#\210\300\307\305\306#\210\300\310\305\306#\210\300\303\305\306#\210\300\311\305\306#\210\300\312\305\306#\210\300\313\305\306#\210\300\314\305\306#\210\300\315\305\306#\210\300\316\305\306#\210\300\317\305\306#\210\300\320\321\322#\210\323\324N\204\\\300\323\324\325\326!#\210\327\330!\204h\300\330\331\320#\210\300\207" [put comint-replace-by-expanded-history menu-enable comint-input-autoexpand comint-input-ring permanent-local t comint-input-ring-index comint-save-input-ring-index comint-input-filter-functions comint-output-filter-functions comint-preoutput-filter-functions comint-scroll-to-bottom-on-input comint-move-point-for-output comint-scroll-show-maximum-output comint-ptyp comint-mode mode-class special comint-mode-hook variable-documentation purecopy "Hook run when entering Comint mode.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" boundp comint-mode-map definition-name] 5)
(defvar comint-mode-map (make-sparse-keymap))
(byte-code "\300\301N\204\302\300\301\303\304!#\210\305\306!\204\302\306\307\310#\210\300\207" [comint-mode-map variable-documentation put purecopy "Keymap for `comint-mode'." boundp comint-mode-syntax-table definition-name comint-mode] 5)
(defvar comint-mode-syntax-table (make-syntax-table))
(byte-code "\300\301N\204\302\300\301\303\304!#\210\302\305\306\307#\207" [comint-mode-syntax-table variable-documentation put purecopy "Syntax table for `comint-mode'." comint-mode-abbrev-table definition-name comint-mode] 5)
(defvar comint-mode-abbrev-table (progn (define-abbrev-table 'comint-mode-abbrev-table nil) comint-mode-abbrev-table))
(byte-code "\300\301N\204\302\300\301\303\304!#\210\302\305\306\307#\207" [comint-mode-abbrev-table variable-documentation put purecopy "Abbrev table for `comint-mode'." comint-mode derived-mode-parent nil] 5)
#@1729 Major mode for interacting with an inferior interpreter.
Interpreter name is same as buffer name, sans the asterisks.
Return at end of buffer sends line as input.
Return not at end copies rest of line to end and sends it.
Setting variable `comint-eol-on-send' means jump to the end of the line
before submitting new input.

This mode is customized to create major modes such as Inferior Lisp
mode, Shell mode, etc.  This can be done by setting the hooks
`comint-input-filter-functions', `comint-input-filter', `comint-input-sender'
and `comint-get-old-input' to appropriate functions, and the variable
`comint-prompt-regexp' to the appropriate regular expression.

The mode maintains an input history of size `comint-input-ring-size'.
You can access this with the commands \[comint-next-input],
\[comint-previous-input], and \[comint-dynamic-list-input-ring].
Input ring history expansion can be achieved with the commands
\[comint-replace-by-expanded-history] or \[comint-magic-space].
Input ring expansion is controlled by the variable `comint-input-autoexpand',
and addition is controlled by the variable `comint-input-ignoredups'.

Commands with no default key bindings include `send-invisible',
`comint-dynamic-complete', `comint-dynamic-list-filename-completions', and
`comint-magic-space'.

Input to, and output from, the subprocess can cause the window to scroll to
the end of the buffer.  See variables `comint-output-filter-functions',
`comint-preoutput-filter-functions', `comint-scroll-to-bottom-on-input',
and `comint-move-point-for-output'.

If you accidentally suspend your process, use \[comint-continue-subjob]
to continue it.

\{comint-mode-map}

Entry to this mode runs the hooks on `comint-mode-hook'.

(fn)
(defalias 'comint-mode #[0 "\306\300!\210\307\310 \210\311\312\313!\210\314\f!\210
@\315A\306\316!\210\307\306\317!\210\320 \306\321!\210\320 \306\322!\210\323 \306\324!\210\306\325!\210\306\326!\210\306\327!\210\306\330!\210\331\327!\203Y\204_\332!\306\333!\210\306\334!\210\331\333!\203r\204u\335\331\334!\203\200\204\203\335\306\336!\210\306\337!\210\306\340!\210\306\341!\210\306\342!\210\306\343!\210\306\344!\210\306\345!\210\306\346!\210\306\347!\210\306\350!\210\306\351!\210\306\352!\210\353\354\355\307\211$\210\306\356!\210\306\357!\210\306\360!\210\306\361!\210\306\362!\210\363B!\206\332\3642\306\365!\210\323 5\306\366!\210\3676\353\370\371\335\307$\210\353\372\373\335\307$\210\353\374\375\335\307$\210\306\376!\210\335>)\377\201C!\207" [delay-mode-hooks major-mode mode-name comint-mode-map comint-mode-syntax-table comint-mode-abbrev-table make-local-variable t kill-all-local-variables comint-mode "Comint" use-local-map set-syntax-table (":%s") window-point-insertion-type comint-last-input-start point-min-marker comint-last-input-end comint-last-output-start make-marker comint-last-prompt-overlay comint-prompt-regexp comint-input-ring-size comint-input-ring comint-input-ring-file-name boundp make-ring comint-input-ring-index comint-save-input-ring-index nil comint-matching-input-from-input-string comint-input-autoexpand comint-input-ignoredups comint-delimiter-argument-list comint-completion-fignore comint-get-old-input comint-input-filter comint-input-sender comint-eol-on-send comint-scroll-to-bottom-on-input comint-move-point-for-output comint-scroll-show-maximum-output comint-stored-incomplete-input add-hook pre-command-hook comint-preinput-scroll-to-bottom comint-ptyp comint-process-echoes comint-file-name-chars comint-file-name-quote-list comint-file-name-prefix file-remote-p "" comint-accum-marker font-lock-defaults (nil t) change-major-mode-hook font-lock-defontify isearch-mode-hook comint-history-isearch-setup completion-at-point-functions comint-completion-at-point next-line-add-newlines run-mode-hooks local-abbrev-table mode-line-process default-directory comint-mode-hook] 5 (#$ . 20514) nil])
#@189 Return non-nil if there is a living process associated w/buffer BUFFER.
Living means the status is `open', `run', or `stop'.
BUFFER can be either a buffer or the name of one.

(fn BUFFER)
(defalias 'comint-check-proc #[257 "\300!\211\205\f\301!\302>\207" [get-buffer-process process-status (open run stop)] 4 (#$ . 24436)])
#@741 Make a Comint process NAME in BUFFER, running PROGRAM.
If BUFFER is nil, it defaults to NAME surrounded by `*'s.
If there is a running process in BUFFER, it is not restarted.

PROGRAM should be one of the following:
- a string, denoting an executable program to create via
  `start-file-process'
- a cons pair of the form (HOST . SERVICE), denoting a TCP
  connection to be opened via `open-network-stream'
- nil, denoting a newly-allocated pty.

Optional fourth arg STARTFILE is the name of a file, whose
contents are sent to the process as its initial input.

If PROGRAM is a string, any more args are arguments to PROGRAM.

Return the (possibly newly created) process buffer.

(fn NAME BUFFER PROGRAM &optional STARTFILE &rest SWITCHES)
(defalias 'make-comint-in-buffer #[1155 "\300\301!\204\n\302\303!\210\304\206\305\305Q!\262\306!\2044rq\210\307\310!\204*\310 \210)\311%\210\207" [fboundp start-file-process error "Multi-processing is not supported for this system" get-buffer-create "*" comint-check-proc derived-mode-p comint-mode comint-exec] 11 (#$ . 24770)])
#@694 Make a Comint process NAME in a buffer, running PROGRAM.
The name of the buffer is made by surrounding NAME with `*'s.
PROGRAM should be either a string denoting an executable program to create
via `start-file-process', or a cons pair of the form (HOST . SERVICE) denoting
a TCP connection to be opened via `open-network-stream'.  If there is already
a running process in that buffer, it is not restarted.  Optional third arg
STARTFILE is the name of a file, whose contents are sent to the
process as its initial input.

If PROGRAM is a string, any more args are arguments to PROGRAM.

Returns the (possibly newly created) process buffer.

(fn NAME PROGRAM &optional STARTFILE &rest SWITCHES)
(defalias 'make-comint #[898 "\300\301\302&\207" [apply make-comint-in-buffer nil] 11 (#$ . 25865)])
#@299 Run PROGRAM in a Comint buffer and switch to it.
The buffer name is made by surrounding the file name of PROGRAM with `*'s.
The file name is used to make a symbol name, such as `comint-sh-hook', and any
hooks on this symbol are run in the buffer.
See `make-comint' and `comint-exec'.

(fn PROGRAM)
(defalias 'comint-run #[257 "\300!\301\302\"!\210\303\304\305\306Q!!\207" [file-name-nondirectory switch-to-buffer make-comint run-hooks intern-soft "comint-" "-hook"] 7 (#$ . 26674) "sRun program: "])
#@684 Start up a process named NAME in buffer BUFFER for Comint modes.
Runs the given COMMAND with SWITCHES, and initial input from STARTFILE.

COMMAND should be one of the following:
- a string, denoting an executable program to create via
  `start-file-process'
- a cons pair of the form (HOST . SERVICE), denoting a TCP
  connection to be opened via `open-network-stream'
- nil, denoting a newly-allocated pty.

This function blasts any old process running in the buffer, and
does not set the buffer mode.  You can use this to cheaply run a
series of processes in the same Comint buffer.  The hook
`comint-exec-hook' is run after each exec.

(fn BUFFER NAME COMMAND STARTFILE SWITCHES)
(defalias 'comint-exec #[1285 "rq\210\302!\211\203\303!\210\210:\203\"\304@A$\202)\305$\306\307\"\210\310\301!\210db\210\311!`\312\223\210\203[\313\314!\210db\210\315!\210`d{\262`d|\210\316\"\210\317\320!\210\262)\207" [process-connection-type comint-ptyp get-buffer-process delete-process open-network-stream comint-exec-1 set-process-filter comint-output-filter make-local-variable process-mark nil sleep-for 1 insert-file-contents comint-send-string run-hooks comint-exec-hook] 10 (#$ . 27185)])
(defalias 'comint-exec-1 #[1028 "\305\300!\203\203\306\307\310\311\312 \"E\202\313\310\314\312 \"D\315\316!?\205%\317C\244\310\320	\"C\244\n\244\321!\2038\2029\322\323\211\211\211\323\262\323\262\203Y\324!\203Y\fB\202Z\f\325\326%\262)\327!\204s\330\331!\210\332!\211@\262\211A\262\210\203\220\204\220\333\334\"\262\335\262\211\203\232\336#\210*\207" [system-uses-terminfo emacs-version process-environment default-directory exec-path boundp "TERM=dumb" "TERMCAP=" format "COLUMNS=%d" window-width "TERM=emacs" "TERMCAP=emacs:co#%d:tc=unknown:" getenv "EMACS" "EMACS=t" "INSIDE_EMACS=%s,comint" file-accessible-directory-p "/" nil file-name-directory apply start-file-process processp error "No process started" process-coding-system coding-system-change-eol-conversion unix t set-process-coding-system] 16 "\n\n(fn NAME BUFFER COMMAND SWITCHES)"])
#@207 In a Comint buffer, set the current input to the previous input at point.
If there is no previous input at point, run the command specified
by the global keymap (usually `mouse-yank-at-click').

(fn EVENT)
(defalias 'comint-insert-input #[257 "\303!\3048\206A@:\203A@@\202A@)\305\211\306\303!\211@)!r\307\310\311\312\313\314!\315\"\316\317%DC\216\320@\321\"\210\322!W\203Y\322!dW\203Y\323!\262\324!\262*\210\211\203g	\203g\203\221\325 \326!\205t\211GSH\211\205~\327\n\314!\"\211\205\214\211\330=?\205\214\331!\266\203\202\310\306\303!\211@)!r\307\310\311\312\313\314!\332\"\316\317%DC\216\320@\321\"\210db\210\333	!\206\300\334\335p!!`|\210c*\262\207" [position comint-accum-marker global-map event-end 5 nil internal--before-with-selected-window funcall make-byte-code 0 "\301\300!\207" vconcat vector [internal--after-with-selected-window] 2 "\n\n(fn)" select-window norecord field-end field-at-pos field-string-no-properties this-command-keys vectorp lookup-key comint-insert-input call-interactively [internal--after-with-selected-window] marker-position process-mark get-buffer-process] 13 (#$ . 29306) "e"])
#@736 Set the buffer's `comint-input-ring' from a history file.
The name of the file is given by the variable `comint-input-ring-file-name'.
The history ring is of size `comint-input-ring-size', regardless of file size.
If `comint-input-ring-file-name' is nil this function does nothing.

If the optional argument SILENT is non-nil, we say nothing about a
failure to read the history file.

This function is useful for major mode commands and mode hooks.

The commands stored in the history file are separated by the
`comint-input-ring-separator', and entries that match
`comint-input-history-ignore' are ignored.  The most recent command
comes last.

See also `comint-input-ignoredups' and `comint-write-input-ring'.

(fn &optional SILENT)
(defalias 'comint-read-input-ring #[256 "\203\n\306\232\203\f\307\207\310!\204\211\206\277\311\312\"\207\313\314	^\315!\316\317!r\211q\210\320\321\313\322\323\324!\325\"\326\327%DC\216\330!\210db\210\307\211\211	W\203\263\331\n\307\332#\203\263\313\224\211\262\203\263\331\n\307\332#\203i\313\225\202je\262{\262b\210\333\"\204E\f\203\216\334!\204\216\335\313\"\230\204EU\203\246\336	Z^\"\210\337!\262\340\"\210T\262\202E\266*\210\211\307\211!\266\204\207" [comint-input-ring-file-name comint-input-ring-size comint-input-ring-separator comint-input-history-ignore comint-input-ignoredups comint-input-ring "" nil file-readable-p message "Cannot read history file %s" 0 1500 make-ring generate-new-buffer " *temp*" funcall make-byte-code "\301\300!\205	\302\300!\207" vconcat vector [buffer-name kill-buffer] 2 "\n\n(fn)" insert-file-contents re-search-backward t string-match ring-empty-p ring-ref ring-extend ring-size ring-insert-at-beginning comint-input-ring-index] 13 (#$ . 30474)])
#@361 Writes the buffer's `comint-input-ring' to a history file.
The name of the file is given by the variable `comint-input-ring-file-name'.
The original contents of the file are lost if `comint-input-ring' is not empty.
If `comint-input-ring-file-name' is nil this function does nothing.

Useful within process sentinels.

See also `comint-read-input-ring'.

(fn)
(defalias 'comint-write-input-ring #[0 "\203\303\232\204	\203\304	!\203\305\207\306!\204!\307\310\"\207\311\312!	\313!rq\210\314 \210\211\315V\203E\211S\262\316\"\n\261\210\2020\317\320 \305\305\321%\210\322\305!)\207" [comint-input-ring-file-name comint-input-ring comint-input-ring-separator "" ring-empty-p nil file-writable-p message "Cannot write history file %s" get-buffer-create " *Temp Input History*" ring-length erase-buffer 0 ring-ref write-region buffer-string no-message kill-buffer] 10 (#$ . 32262)])
#@67 Choose the input history entry that point is in or next to.

(fn)
(defalias 'comint-dynamic-list-input-ring-select #[0 "\302\211\211m\204\303`\304\"\203`\262`T\262o\204)\303`S\304\"\203)`S\262`\262\2041\305\306!\210\307\304\"\262\310\304\"\206?d\262{\262\311	!\210\312\"\207" [completion-reference-buffer comint-dynamic-list-input-ring-window-conf nil get-text-property mouse-face error "No history entry here" previous-single-property-change next-single-property-change set-window-configuration choose-completion-string] 7 (#$ . 33167) nil])
#@72 Display a list of recent inputs entered into the current buffer.

(fn)
(defalias 'comint-dynamic-list-input-ring #[0 "\306!\203\f\307!\203\310\311!\207\312\313\314 \315!\316\211W\2030\211\317\"B\262\210\211T\262\202\266\237\262	r\320!q\210p\321 \210\312\211\322\211\322*\323 \210\324\325!\210+\211+\326!\210q\210\327 \330\331 \"\210\332\333\334#\210\335!\266\336y\210\337\340\312\341#\203\205\342\343!\210\202v\344!\210)\266\345\316!\210\310\346!\210\211,\347 \211\350=\203\245\351!\202\252\211C\211-\262\207" [comint-input-ring default-directory buffer-read-only buffer-file-name buffer-undo-list inhibit-modification-hooks ring-p ring-empty-p message "No history" nil " *Input History*" current-window-configuration ring-length 0 ring-ref get-buffer-create kill-all-local-variables t erase-buffer run-hooks temp-buffer-setup-hook display-completion-list make-sparse-keymap set-keymap-parent current-local-map define-key "
" comint-dynamic-list-input-ring-select use-local-map 3 search-backward "completion" move replace-match "history reference" internal-temp-output-buffer-show sit-for "Hit space to flush" read-event 32 set-window-configuration inhibit-read-only standard-output comint-dynamic-list-input-ring-window-conf unread-command-events] 11 (#$ . 33739) nil])
#@65 Return list of regexp and prefix arg using PROMPT.

(fn PROMPT)
(defalias 'comint-regexp-arg #[257 "\303\304\211\211\301%\211\305\230\203	@\206\211\202\211\306\n!)D\207" [last-command minibuffer-history-search-history current-prefix-arg read-from-minibuffer nil "" prefix-numeric-value] 7 (#$ . 35060)])
(defalias 'comint-search-arg #[257 "\302 \204	\303\304!\207\203\305!\203\303\306!\207\307!\203!\310\311\207\207" [comint-input-ring comint-input-ring-index comint-after-pmark-p user-error "Not at command line" ring-empty-p "Empty input ring" zerop nil 1] 3 "\n\n(fn ARG)"])
#@33 Restore unfinished input.

(fn)
(defalias 'comint-restore-input #[0 "\205\302 \210	G\303V\203	c\210\304\305!\210\306\211\207" [comint-input-ring-index comint-stored-incomplete-input comint-delete-input 0 message "Input restored" nil] 2 (#$ . 35663) nil])
#@87 Index to start a directional search, starting at `comint-input-ring-index'.

(fn ARG)
(defalias 'comint-search-start #[257 "\203\302\303V\203\304\202\305\\\306	!\"\207\211\303Y\203\303\207\306	!S\207" [comint-input-ring-index comint-input-ring mod 0 1 -1 ring-length] 5 (#$ . 35930)])
#@107 Return the string ARG places along the input ring.
Moves relative to `comint-input-ring-index'.

(fn ARG)
(defalias 'comint-previous-input-string #[257 "\302	\203\303	\\\304!\"\202\"\207" [comint-input-ring comint-input-ring-index ring-ref mod ring-length] 7 (#$ . 36233)])
#@64 Cycle backwards through input history, saving input.

(fn ARG)
(defalias 'comint-previous-input #[257 "\203&\211\303W\203\303=\204\211\303V\203&\304	!S=\203&\n\203&\305 \207\306\307\"\207" [comint-input-ring-index comint-input-ring comint-stored-incomplete-input 0 ring-length comint-restore-input comint-previous-matching-input "."] 4 (#$ . 36521) "*p"])
#@49 Cycle forwards through input history.

(fn ARG)
(defalias 'comint-next-input #[257 "\300[!\207" [comint-previous-input] 3 (#$ . 36895) "*p"])
#@130 Return the string matching REGEXP ARG places along the input ring.
Moves relative to `comint-input-ring-index'.

(fn REGEXP ARG)
(defalias 'comint-previous-matching-input-string #[514 "\301\"\211\205\f\302\"\207" [comint-input-ring comint-previous-matching-input-string-position ring-ref] 6 (#$ . 37045)])
#@155 Return the index matching REGEXP ARG places along the input ring.
Moves relative to START, or `comint-input-ring-index'.

(fn REGEXP ARG &optional START)
(defalias 'comint-previous-matching-input-string-position #[770 "\301!\203\f\302!\203\303\304!\210\305!\306V\203\307\202\310\311\206&\312!Z\"\313\211\306U\204\204\262\311\\\"\262W\203j\204j\314\315\"\"\204j\311\\\"\262U\262\202C\306V\203wS\202zT\262\202,\314\315\"\"\205\214\207" [comint-input-ring ring-p ring-empty-p user-error "No history" ring-length 0 1 -1 mod comint-search-start nil string-match ring-ref] 13 (#$ . 37363)])
#@72 Delete all input between accumulation or process mark and point.

(fn)
(defalias 'comint-delete-input #[0 "\301!\206\302\303p!!d|\207" [comint-accum-marker marker-position process-mark get-buffer-process] 3 (#$ . 38021)])
#@233 Search backwards through input history for match for REGEXP.
(Previous history elements are earlier commands.)
With prefix argument N, search for Nth previous match.
If N is negative, find the next or Nth next match.

(fn REGEXP N)
(defalias 'comint-previous-matching-input #[514 "\304!\262\305\"\211\204\306\307!\202*\204	 \211\310\311T\"\210\312 \210\313\"c\207" [comint-input-ring-index comint-get-old-input comint-stored-incomplete-input comint-input-ring comint-search-arg comint-previous-matching-input-string-position user-error "Not found" message "History item: %d" comint-delete-input ring-ref] 6 (#$ . 38253) (comint-regexp-arg "Previous input matching (regexp): ")])
#@242 Search forwards through input history for match for REGEXP.
(Later history elements are more recent commands.)
With prefix argument N, search for Nth following match.
If N is negative, find the previous or Nth previous match.

(fn REGEXP N)
(defalias 'comint-next-matching-input #[514 "\300[\"\207" [comint-previous-matching-input] 5 (#$ . 38954) (comint-regexp-arg "Next input matching (regexp): ")])
#@246 Search backwards through input history for match for current input.
(Previous history elements are earlier commands.)
With prefix argument N, search for Nth previous match.
If N is negative, search forwards for the -Nth following match.

(fn N)
(defalias 'comint-previous-matching-input-from-input #[257 "\304>\204\305	!\206\306\307p!!`{\310\311\312\313\n!P\"\207" [last-command comint-accum-marker comint-matching-input-from-input-string comint-input-ring-index (comint-previous-matching-input-from-input comint-next-matching-input-from-input) marker-position process-mark get-buffer-process nil comint-previous-matching-input "^" regexp-quote] 5 (#$ . 39365) "p"])
#@251 Search forwards through input history for match for current input.
(Following history elements are more recent commands.)
With prefix argument N, search for Nth following match.
If N is negative, search backwards for the -Nth previous match.

(fn N)
(defalias 'comint-next-matching-input-from-input #[257 "\300[!\207" [comint-previous-matching-input-from-input] 3 (#$ . 40047) "p"])
#@866 Expand input command history references before point.
Expansion is dependent on the value of `comint-input-autoexpand'.

This function depends on the buffer's idea of the input history, which may not
match the command interpreter's idea, assuming it has one.

Assumes history syntax is like typical Un*x shells'.  However, since Emacs
cannot know the interpreter's idea of input line numbers, assuming it has one,
it cannot expand absolute input line number references.

If the optional argument SILENT is non-nil, never complain
even if history reference seems erroneous.

If the optional argument START is non-nil, that specifies the
start of the text to scan for history references, rather
than the logical beginning of line.

See `comint-magic-space' and `comint-replace-by-expanded-history-before-point'.

Returns t if successful.

(fn &optional SILENT START)
(defalias 'comint-replace-by-expanded-history #[512 "\300\"\211\205\n\211 \207" [comint-c-a-p-replace-by-expanded-history] 5 (#$ . 40438) nil])
#@113 Expand input command history at point.
For use on `completion-at-point-functions'.

(fn &optional SILENT START)
(defalias 'comint-c-a-p-replace-by-expanded-history #[512 "\205J	\203\212\303 \210\304\n\305P!)\202\"\306`\307\"?\205J\310\311\312 \"\205J\313\314\315\316\317\320\321\"\322\"\323\324%D\215\205J\315\316\325\320\321\"\326\"\323\324%\207" [comint-input-autoexpand comint-use-prompt-regexp comint-prompt-regexp beginning-of-line looking-at "!\\|\\^" get-char-property field string-match "!\\|^\\^" field-string dry-run funcall make-byte-code 0 "\302\300\301\303#\207" vconcat vector [comint-replace-by-expanded-history-before-point dry-run] 4 "\n\n(fn)" "\302 \303\300\301\"\210\211\302 U?\207" [buffer-modified-tick comint-replace-by-expanded-history-before-point]] 11 (#$ . 41457)])
#@392 Expand directory stack reference before point.
See `comint-replace-by-expanded-history'.  Returns t if successful.

If the optional argument START is non-nil, that specifies the
start of the text to scan for history references, rather
than the logical beginning of line.

If DRY-RUN is non-nil, throw to DRY-RUN before performing any
actual side-effect.

(fn SILENT &optional START DRY-RUN)
(defalias 'comint-replace-by-expanded-history-before-point #[769 "\212\302 `Z\206\303 \211b\210\304\302 Zw\210`\302 ZW\203\242\305h\306U\204-\307`\"\2034`Tb\210\202\310\311!\203N\203C\312\313\"\210\314\225b\210\313\315!\210\202\310\316!\203\222\203]\312\317\"\210\320\321\224\321\225{!S\211\322	!X\203\206\323\324\325!\326\224\326\225#\327\211#\210\211\313\330T\"\210\202\216\314\225b\210\313\331!\210\210\202\310\332!\204\236\310\333!\203\274\203\247\312\334\"\210\323\324\325\314!\321\224\321\225#\327\211#\210\313\335!\210\202\310\336!\203P\203\313\312\334\"\210\321\224\321\225\326\224\326\225\206\330\206\335{\337 \340\341\314\342\343\344!\345\"\346\347%DC\216\310\350!)\262\203\376\351\202\377\352\337 \340\341\314\342\343\344!\353\"\346\347%DC\216\354\355!P\321\")\262\211\2044\314\225b\210\204K\313\356!\210\357 \210\202K\211\323\324\360	\"\361\224\361\225#\327\211#\210\313\330T\"\210\266\202\310\362!\203\234\203_\312\334\"\210\321\224\321\225{\326\224\326\225{\305\323\325\314!\327\211#\210`\262\314\224b\210\363\327#\204\215\204\227\364\356!\210\202\227\323\327\211#\210\313\365!\210\266\202\321u\210\202\266)\305\207" [comint-input-ring-index comint-input-ring line-end-position comint-line-beginning-position "^!^" nil 92 comint-within-quotes looking-at "![0-9]+\\($\\|[^-]\\)" throw message 0 "Absolute reference cannot be expanded" "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?" history string-to-number 1 ring-length replace-match comint-args comint-previous-input-string 2 t "History item: %d" "Relative reference exceeds input history size" "!!?:?\\([0-9^$*-]+\\)" "!!" expand "History item: previous" "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?" match-data funcall make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "\n\n(fn)" "!\\?" "" "^" [set-match-data evaporate] comint-previous-matching-input-string-position regexp-quote "Not found" ding ring-ref 4 "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?" search-forward user-error "History item: substituted"] 19 (#$ . 42273)])
#@155 Expand input history references before point and insert ARG spaces.
A useful command to bind to SPC.  See `comint-replace-by-expanded-history'.

(fn ARG)
(defalias 'comint-magic-space #[257 "\300 \210\301!\207" [comint-replace-by-expanded-history self-insert-command] 3 (#$ . 44772) "p"])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311\312\313&	\207" [custom-declare-variable comint-history-isearch funcall function #[0 "\300\207" [nil] 1 "\n\n(fn)"] "Non-nil to Isearch in input history only, not in comint buffer output.\nIf t, usual Isearch keys like `C-r' and `C-M-r' in comint mode search\nin the input history.\nIf `dwim', Isearch keys search in the input history only when initial\npoint position is at the comint command line.  When starting Isearch\nfrom other parts of the comint buffer, they search in the comint buffer.\nIf nil, Isearch operates on the whole comint buffer." :type (choice (const :tag "Don't search in input history" nil) (const :tag "When point is on command line initially, search history" dwim) (const :tag "Always search in input history" t)) :group comint :version "23.2"] 10)
#@68 Search for a string backward in input history using Isearch.

(fn)
(defalias 'comint-history-isearch-backward #[0 "\301\302 )\207" [comint-history-isearch t isearch-backward] 1 (#$ . 45897) nil])
#@80 Search for a regular expression backward in input history using Isearch.

(fn)
(defalias 'comint-history-isearch-backward-regexp #[0 "\301\302 )\207" [comint-history-isearch t isearch-backward-regexp] 1 (#$ . 46100) nil])
(defvar comint-history-isearch-message-overlay nil)
(make-variable-buffer-local 'comint-history-isearch-message-overlay)
#@132 Set up a comint for using Isearch to search the input history.
Intended to be added to `isearch-mode-hook' in `comint-mode'.

(fn)
(defalias 'comint-history-isearch-setup #[0 "\306=\204\307=\2051\310 \2051\311\312\302!\210\313\312\303!\210\314\312\304!\210\315\312\305!\210\316\317\320\321\322\306$\207" [comint-history-isearch isearch-message-prefix-add isearch-search-fun-function isearch-message-function isearch-wrap-function isearch-push-state-function t dwim comint-after-pmark-p "history " make-local-variable comint-history-isearch-search comint-history-isearch-message comint-history-isearch-wrap comint-history-isearch-push-state add-hook isearch-mode-end-hook comint-history-isearch-end nil] 5 (#$ . 46451)])
#@64 Clean up the comint after terminating Isearch in comint.

(fn)
(defalias 'comint-history-isearch-end #[0 "\203\306!\210\307\310\307\211\307\311\312\313\314#\207" [comint-history-isearch-message-overlay isearch-message-prefix-add isearch-search-fun-function isearch-message-function isearch-wrap-function isearch-push-state-function delete-overlay nil isearch-search-fun-default remove-hook isearch-mode-end-hook comint-history-isearch-end t] 5 (#$ . 47188)])
#@72 Put input history item of the absolute history position POS.

(fn POS)
(defalias 'comint-goto-input #[257 "\204	 \211\304 \210\211\203\305!\204\306\"c\207\nG\307V\205%\nc\207" [comint-input-ring-index comint-get-old-input comint-stored-incomplete-input comint-input-ring comint-delete-input ring-empty-p ring-ref 0] 4 (#$ . 47662)])
#@72 Return the proper search function, for Isearch in input history.

(fn)
(defalias 'comint-history-isearch-search #[0 "\300\207" [#[771 "\301 \302C\203\203\303 \204\304\305p!!b\210\203\"\202$\306 #\206L?\205L\307\310\311\312\313\314\315\n\n\n$\316\"\317\320%D\321\310\322\307EDC\217\207" [isearch-forward isearch-search-fun-default nil comint-after-pmark-p process-mark get-buffer-process comint-line-beginning-position #1=#:err funcall make-byte-code 0 "\303@\204H\f\203
\204\306\307!\210\310\311!\210\312 b\210\2021
\313!S=\203*\306\314!\210\315\311!\210db\210``\303\302\300\f?\205A\312 \301#\240\210\202`\207" vconcat vector [isearch-forward comint-input-ring-index error "End of history; no next item" comint-next-input 1 comint-line-beginning-position ring-length "Beginning of history; no preceding item" comint-previous-input comint-input-ring isearch-barrier isearch-opoint] 5 "\n\n(fn)" error #[257 "\300\207" [nil] 2 "\n\n(fn IGNORED)"]] 16 "\n\n(fn STRING BOUND NOERROR)"]] 1 (#$ . 48014)])
#@293 Display the input history search prompt.
If there are no search errors, this function displays an overlay with
the Isearch prompt which replaces the original comint prompt.
Otherwise, it displays the standard Isearch message returned from
`isearch-message'.

(fn &optional C-Q-HACK ELLIPSIS)
(defalias 'comint-history-isearch-message #[512 "\203	\203
\303\"\207\304\n!\203\"\305\n\212\306y\210`)\307 #\210\2023\310\212\306y\210`)\307 \"\311\n\312\313#\210\311\n\314\315\"#\210\316\317!\207" [isearch-success isearch-error comint-history-isearch-message-overlay isearch-message overlayp move-overlay 0 comint-line-beginning-position make-overlay overlay-put evaporate t display isearch-message-prefix message ""] 8 (#$ . 49060)])
#@172 Wrap the input history search when search fails.
Move point to the first history element for a forward search,
or to the last history element for a backward search.

(fn)
(defalias 'comint-history-isearch-wrap #[0 "\203\303\304	!S!\210\202\303\305!\210\306\203\307 \202db\207" [isearch-forward comint-input-ring isearch-success comint-goto-input ring-length nil t comint-line-beginning-position] 3 (#$ . 49807)])
#@161 Save a function restoring the state of input history search.
Save `comint-input-ring-index' to the additional state parameter
in the search status stack.

(fn)
(defalias 'comint-history-isearch-push-state #[0 "\301\302\303\304EE\207" [comint-input-ring-index lambda (cmd) comint-history-isearch-pop-state cmd] 5 (#$ . 50238)])
#@129 Restore the input history search state.
Go to the history element by the absolute history position HIST-POS.

(fn CMD HIST-POS)
(defalias 'comint-history-isearch-pop-state #[514 "\300!\207" [comint-goto-input] 4 (#$ . 50573)])
#@106 Return t if the number of quotes between BEG and END is odd.
Quotes are single and double.

(fn BEG END)
(defalias 'comint-within-quotes #[514 "\300\301#\300\302#\303\304\"\305U\206\303\304\"\305U\207" [comint-how-many-region "\\(^\\|[^\\\\]\\)'" "\\(^\\|[^\\\\]\\)\"" mod 2 1] 7 (#$ . 50808)])
#@75 Return number of matches for REGEXP from BEG to END.

(fn REGEXP BEG END)
(defalias 'comint-how-many-region #[771 "\300\212\301 \302\303\300\304\305\306!\307\"\310\311%DC\216b\210\312\313#\203'T\262\202)\210)\211\207" [0 match-data funcall make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "\n\n(fn)" re-search-forward t] 12 (#$ . 51117)])
(defalias 'comint-args #[771 "\300 \301\302\303\304\305\306!\307\"\310\311%DC\216\204\312\303\313#\202vf\314=\203+T\202,{\315\316\"\2039\317\202Q\315\320\"\203D\303\202Q\211\321\230\203N\313\202Q\322!\315\323\"\203\\\313\202n\315\324\"\203m\322\303\225\313O!\202n\211\312#\266\203)\207" [match-data funcall make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "\n\n(fn)" comint-arguments nil 58 string-match "^[*^]" 1 "^-" "$" string-to-number "[-*$]$" "-"] 11 "\n\n(fn STRING BEGIN END)"])
#@320 Return a list of arguments from ARG.
Break it up at the delimiters in `comint-delimiter-argument-list'.
Returned list is backwards.

Characters with non-nil values of the text property `literal' are
assumed to have literal values (e.g., backslash-escaped
characters), and are not considered to be delimiters.

(fn ARG)
(defalias 'comint-delim-arg #[257 "\204\211C\207\301\302GW\203dH>\2039\303\304#\2049W\203WH=\203WT\262\202$W\203WH>\203P\303\304#\203WT\262\2029OB\262\266\202\207" [comint-delimiter-argument-list nil 0 get-text-property literal] 10 (#$ . 52057)])
#@448 Return from STRING the NTH to MTH arguments.
NTH and/or MTH can be nil, which means the last argument.
Returned arguments are separated by single spaces.
We assume whitespace separates arguments, except within quotes
and except for a space or tab that immediately follows a backslash.
Also, a run of one or more of a single character
in `comint-delimiter-argument-list' is a separate argument.
Argument 0 is the command name.

(fn STRING NTH MTH)
(defalias 'comint-arguments #[771 "\300\301!\205\301 ?\211\203\302\202\303\211\304P\203\305\202\306\307\310\211\307\211\211\n\2030X\203\236\311#\203\236	\203P\306\224\203P\312\306\224\306\225\313\314%\210\203k\310\224U\203k\310\225\262\211\206f\224\262\202$\203\212\fO\262\211\203\202B\202\210\315!\244\262G\262\224\262\310\224\262\310\225\262\202$\203\275\fO\262\211\203\265B\202\273\315!\244\262G\262\206\310S\203\325\fZS\202\326\310\316\317\233\237\233\320#\266\202\207" [fboundp w32-shell-dos-semantics "[^ \n	\"'`\\]\\|\\(\\\\.\\)\\|" "[^ \n	\"'`]+\\|" "\\(\"\\([^\"\\]\\|\\\\.\\)*\"\\|'[^']*'\\|`[^`]*`\\)" 2 1 nil 0 string-match put-text-property literal t comint-delim-arg mapconcat #[257 "\207" [] 2 "\n\n(fn A)"] " "] 20 (#$ . 52680)])
#@100 Add CMD to the input history.
Ignore duplicates if `comint-input-ignoredups' is non-nil.

(fn CMD)
(defalias 'comint-add-to-input-history #[257 "!\205?	\203 \304\n!\203 \305\n!\204 \306\n\307\"\230?\205?\310\n!\211\311\n!U\203:\211W\203:\312\nZ^\"\210\210\313\n\"\207" [comint-input-filter comint-input-ignoredups comint-input-ring comint-input-ring-size ring-p ring-empty-p ring-ref 0 ring-size ring-length ring-extend ring-insert] 7 (#$ . 53975)])
#@2306 Send input to process.
After the process output mark, sends all text from the process mark to
point as input to the process.  Before the process output mark, calls
value of variable `comint-get-old-input' to retrieve old input, copies
it to the process mark, and sends it.

This command also sends and inserts a final newline, unless
NO-NEWLINE is non-nil.

Any history reference may be expanded depending on the value of the variable
`comint-input-autoexpand'.  The list of function names contained in the value
of `comint-input-filter-functions' is called on the input before sending it.
The input is entered into the input history ring, if the value of variable
`comint-input-filter' returns non-nil when called on the input.

If variable `comint-eol-on-send' is non-nil, then point is moved to the
end of line before sending the input.

After the input has been sent, if `comint-process-echoes' is non-nil,
then `comint-send-input' waits to see if the process outputs a string
matching the input, and if so, deletes that part of the output.
If ARTIFICIAL is non-nil, it inhibits such deletion.
Callers sending input not from the user should use ARTIFICIAL = t.

The values of `comint-get-old-input', `comint-input-filter-functions', and
`comint-input-filter' are chosen according to the command interpreter running
in the buffer.  E.g.,

If the interpreter is the csh,
    `comint-get-old-input' is the default:
	If `comint-use-prompt-regexp' is nil, then
	either return the current input field, if point is on an input
	field, or the current line, if point is on an output field.
	If `comint-use-prompt-regexp' is non-nil, then
	return the current line with any initial string matching the
	regexp `comint-prompt-regexp' removed.
    `comint-input-filter-functions' monitors input for "cd", "pushd", and
	"popd" commands.  When it sees one, it cd's the buffer.
    `comint-input-filter' is the default: returns t if the input isn't all white
	space.

If the Comint is Lucid Common Lisp,
    `comint-get-old-input' snarfs the sexp ending at point.
    `comint-input-filter-functions' does nothing.
    `comint-input-filter' returns nil if the input matches input-filter-regexp,
	which matches (1) all whitespace (2) :a, :c, etc.

Similarly for Soar, Scheme, etc.

(fn &optional NO-NEWLINE ARTIFICIAL)
(defalias 'comint-send-input #[512 "\306p!\211\204
\307\310!\202O~\210\311!`\312!Y\203'\203!\313\210\211`{\2022	 b\210\211c\210\211\262\n\314=\204<\211\202D\315\316\"\210`{\n\317=\204N\211\202a\315\316\"\210`{`c\210|\210\266\202\204i\320c\210\321!\210\322\323\203x\202{\324P\"\210\312!\203\211`\202\213`S\316\211V\203\243\325\326#\210\f\204\243\325\327#\210\204\263\f\204\263\325\211T\330#\210)\266\331 \210
 \313!\313\223\210\"`\313\223\210\311!`\313\223\210#\313\211\223\210$%\"\210)&\203I\204I\"!Z\"\\dV\203\332!\203\333\334\313!dZ\313\"d&!\204\360\"\\dX\203H\333\334\313!\"\313\"\211\\&!\203H\316'\"\211\\|\210(\203G\212\"b\210\335 \210))\210\322\336\337\"\266\204\207" [comint-eol-on-send comint-get-old-input comint-input-autoexpand inhibit-modification-hooks comint-use-prompt-regexp comint-input-ring-index get-buffer-process user-error "Current buffer has no process" process-mark marker-position nil input comint-replace-by-expanded-history t history 10 comint-add-to-input-history run-hook-with-args comint-input-filter-functions "\n" add-text-properties (front-sticky t font-lock-face comint-highlight-input) (mouse-face highlight help-echo "mouse-2: insert after prompt as new input") (rear-nonsticky t field boundary inhibit-line-move-field-capture t) comint-snapshot-last-prompt accept-process-output zerop compare-buffer-substrings comint-update-fence comint-output-filter-functions "" comint-save-input-ring-index comint-last-input-start comint-last-input-end comint-accum-marker comint-input-sender-no-newline comint-input-sender comint-process-echoes inhibit-read-only comint-prompt-read-only] 17 (#$ . 54448) nil])
#@599 List of functions to call before inserting Comint output into the buffer.
Each function gets one argument, a string containing the text received
from the subprocess.  It should return the string to insert, perhaps
the same string that was received, or perhaps a modified or transformed
string.

The functions on the list are called sequentially, and each one is
given the string returned by the previous one.  The string returned by
the last function is the text that is actually inserted in the
redirection buffer.

You can use `add-hook' to add functions to this list
either globally or locally.
(defvar comint-preoutput-filter-functions nil (#$ . 58495))
#@114 If nil, Comint will interpret `carriage control' characters in output.
See `comint-carriage-motion' for details.
(defvar comint-inhibit-carriage-motion nil (#$ . 59160))
(defvar comint-last-prompt-overlay nil)
#@155 `snapshot' any current `comint-last-prompt-overlay'.
Freeze its attributes in place, even when more input comes along
and moves the prompt overlay.

(fn)
(defalias 'comint-snapshot-last-prompt #[0 "\205\303\211\304\305!\306!\307!#*\207" [comint-last-prompt-overlay inhibit-modification-hooks inhibit-read-only t add-text-properties overlay-start overlay-end overlay-properties] 5 (#$ . 59377)])
#@260 Interpret carriage control characters in the region from START to END.
Translate carriage return/linefeed sequences to linefeeds.
Make single carriage returns delete to the beginning of the line.
Make backspaces delete the previous character.

(fn START END)
(defalias 'comint-carriage-motion #[514 "\212b\210\302\211\303 \304\211eV\203%\305S\306\"\203%\307 \262\310\311#\210}\210\312\304w\203\223m\204\223g\262\211\313U\203M\314\315!\210`V\203)\314\316!\210\202)\211\317U\203r\203i`W\203a|\210\304\211\223\210\304\262\315u\210`\262\202)\314\315!\210\203\214`W\203)|\210`\304\223\210\202)\307 \262\202)\203\260`W\203\244|\210\202\253\320\306\302$\210\304\211\223\210~*\266\203)\207" [inhibit-field-text-motion inhibit-read-only t line-beginning-position nil get-text-property comint-must-overwrite point-marker remove-text-properties (comint-must-overwrite nil) "^\n
" 8 delete-char 1 -1 10 put-text-property] 11 (#$ . 59787)])
(defalias 'comint-output-filter #[514 "\306!\2059\211\2059\307!\2059r\211q\210\211\203N\203N\211@\310=\203A\311\300!\211\203=\203=\211@!\262\211A\262\202(\210\202G\211@!\262\211A\262\202\210\310\312`\310\"\313\262\214~\210\314!b\210\n`\313\223\210\212\315y\210`)n\204\224\316\"\203\224\211`{\317\320!P\321\"\203\222\315\225\313O\262\202\266\210\321\322\323Q\"\203\253\324\325\313\211$\262\202\225c\210\314!`\313\223\210\f\204\276\326\n`\"\210\211b\210\327\330\"\210\211`\313\223\210\314!b\210
\204\340\310\211%\331\n`\332#\210*\212\315y\210`)\310\211%&\203\feU\204\333S\334\"\204\335S\334\336$\210\331`\337#\210n\203'\2031'\203$\340'`#\210\2021\341`\"'\342'\343\344#\210*\210\211b*\266\202)\207" [comint-preoutput-filter-functions inhibit-read-only comint-last-output-start comint-prompt-regexp comint-inhibit-carriage-motion comint-use-prompt-regexp process-buffer buffer-name t default-value copy-marker nil process-mark 0 looking-back "\\`" regexp-quote string-match "\\(^" "\\)\\1+" replace-match "\\1" comint-carriage-motion run-hook-with-args comint-output-filter-functions add-text-properties (front-sticky (field inhibit-line-move-field-capture) rear-nonsticky t field output inhibit-line-move-field-capture t) get-text-property read-only put-text-property fence (read-only t rear-nonsticky t front-sticky (read-only)) move-overlay make-overlay overlay-put font-lock-face comint-highlight-prompt inhibit-modification-hooks comint-prompt-read-only comint-last-prompt-overlay] 11 "\n\n(fn PROCESS STRING)"])
#@392 Go to the end of buffer in all windows showing it.
Movement occurs if point in the selected window is not after the process mark,
and `this-command' is an insertion command.  Insertion commands recognized
are `self-insert-command', `comint-magic-space', `yank', and `hilit-yank'.
Depends on the value of `comint-scroll-to-bottom-on-input'.

This function should be a pre-command hook.

(fn)
(defalias 'comint-preinput-scroll-to-bottom #[0 "\205;	\302>\205;p\303!\2059`\304!W\2059\211\305=\203&db\2029\306\307\310\311\312\313\"\314\"\315\316%\317\320#\266\203\207" [comint-scroll-to-bottom-on-input this-command (self-insert-command comint-magic-space yank hilit-yank) get-buffer-process process-mark this walk-windows make-byte-code 257 "\302!\300=\2054\301\303=\204\301\304=\2054\305!r\306\307\310\311\312\313!\314\"\315\316%DC\216\317@\320\"\210db*\262\207" vconcat vector [window-buffer t all internal--before-with-selected-window funcall make-byte-code 0 "\301\300!\207" vconcat vector [internal--after-with-selected-window] 2 "\n\n(fn)" select-window norecord] 9 "\n\n(fn WINDOW)" nil t] 11 (#$ . 62371)])
#@306 Go to the end of buffer in some or all windows showing it.
Do not scroll if the current line is the last line in the buffer.
Depends on the value of `comint-move-point-for-output' and
`comint-scroll-show-maximum-output'.

This function should be in the list `comint-output-filter-functions'.

(fn STRING)
(defalias 'comint-postoutput-scroll-to-bottom #[257 "p\303!\304\305\306\307\310\311!\312\"\313\314%DC\216\211?\206i\315\300!\203)\203)\316 \202i\317 \320\321\322#\211\205e\211@\323!\210\304\305\306\324\310\311!\325\"\326\314%DC\216\327!\210	\203]m\203]\330\331\nZ!\210)A\266\202\2020\262\262)\207" [follow-mode comint-scroll-show-maximum-output scroll-margin get-buffer-process funcall make-byte-code 0 "\300q\207" vconcat vector [] 1 "\n\n(fn)" boundp follow-comint-scroll-to-bottom selected-window get-buffer-window-list nil t select-window "\301\300!\207" [select-window] 2 comint-adjust-point recenter -1] 13 (#$ . 63514)])
#@129 Move point in the selected window based on Comint settings.
SELECTED is the window that was originally selected.

(fn SELECTED)
(defalias 'comint-adjust-point #[257 "\302p!`\303!W\2052\304>\204.\305 =\203\306\202\307=\204.\310	!\2052`	Y\2052\303!b\207" [comint-move-point-for-output comint-last-output-start get-buffer-process process-mark (t all) selected-window this others marker-position] 5 (#$ . 64474)])
#@155 Truncate the buffer to `comint-buffer-maximum-size'.
This function could be on `comint-output-filter-functions' or bound to a key.

(fn &optional STRING)
(defalias 'comint-truncate-buffer #[256 "\212\302\303p!!b\210[y\210\304 \210\305e`|*\207" [comint-buffer-maximum-size inhibit-read-only process-mark get-buffer-process beginning-of-line t] 4 (#$ . 64905) nil])
#@164 Strip trailing `^M' characters from the current output group.
This function could be on `comint-output-filter-functions' or bound to a key.

(fn &optional STRING)
(defalias 'comint-strip-ctrl-m #[256 "\300\301p!!\212\302\303\304D\305\303\306\302EDC\217\210\307\310\311#\205$\312\313\311\211#\210\202)\207" [process-mark get-buffer-process #1=#:err funcall #[0 "\302\303!\203\n\202	b\207" [comint-last-input-end comint-last-output-start called-interactively-p interactive] 2 "\n\n(fn)"] error #[257 "\300\207" [nil] 2 "\n\n(fn IGNORED)"] re-search-forward "
+$" t replace-match ""] 8 (#$ . 65278) nil])
(defalias 'shell-strip-ctrl-m 'comint-strip-ctrl-m)
#@62 Put the end of the buffer at the bottom of the window.

(fn)
(defalias 'comint-show-maximum-output #[0 "db\210\301\302Z!\207" [scroll-margin recenter -1] 3 (#$ . 65946) nil])
#@356 Default for `comint-get-old-input'.
If `comint-use-prompt-regexp' is nil, then either
return the current input field, if point is on an input field, or the
current line, if point is on an output field.
If `comint-use-prompt-regexp' is non-nil, then return
the current line with any initial string matching the regexp
`comint-prompt-regexp' removed.

(fn)
(defalias 'comint-get-old-input-default #[0 "\301\204\302\303 \211\262\304\"\204\305!\202\306 \210\307`\310 \"\207" [comint-use-prompt-regexp nil get-char-property field-beginning field field-string-no-properties comint-bol buffer-substring-no-properties line-end-position] 4 (#$ . 66129)])
#@120 Insert after prompt old input at point as new input to be edited.
Calls `comint-get-old-input' to get old input.

(fn)
(defalias 'comint-copy-old-input #[0 " \301p!\211\204\302\303!\202\304!b\210c\207" [comint-get-old-input get-buffer-process user-error "Current buffer has no process" process-mark] 4 (#$ . 66791) nil])
#@136 Skip past the text matching regexp `comint-prompt-regexp'.
If this takes us past the end of the current line, don't skip at all.

(fn)
(defalias 'comint-skip-prompt #[0 "\301!\205\302\225\303 X\205\302\225b\207" [comint-prompt-regexp looking-at 0 line-end-position] 2 (#$ . 67126)])
#@61 Return t if point is after the process output marker.

(fn)
(defalias 'comint-after-pmark-p #[0 "\300\301p!!\302!`X\207" [process-mark get-buffer-process marker-position] 3 (#$ . 67420)])
#@164 Default function for sending to PROC input STRING.
This just sends STRING plus a newline.  To override this,
set the hook `comint-input-sender'.

(fn PROC STRING)
(defalias 'comint-simple-send #[514 "\203\211\202\211\301P\302\"\266\205\211\303\230?\205\304 \207" [comint-input-sender-no-newline "\n" comint-send-string "" process-send-eof] 6 (#$ . 67616)])
#@251 Return the buffer position of the beginning of the line, after any prompt.
If `comint-use-prompt-regexp' is non-nil, then the prompt skip is done by
skipping text matching the regular expression `comint-prompt-regexp',
a buffer local variable.

(fn)
(defalias 'comint-line-beginning-position #[0 "\203\212\301 \210\302 \210`)\207\303\304 \305 \"\207" [comint-use-prompt-regexp beginning-of-line comint-skip-prompt constrain-to-field line-beginning-position line-end-position] 3 (#$ . 67993)])
#@333 Go to the beginning of line, then skip past the prompt, if any.
If prefix argument is given (\[universal-argument]) the prompt is not skipped.
If `comint-use-prompt-regexp' is non-nil, then the prompt skip is done
by skipping text matching the regular expression `comint-prompt-regexp',
a buffer local variable.

(fn &optional ARG)
(defalias 'comint-bol #[256 "\211\203\300y\207\301 b\207" [0 comint-line-beginning-position] 2 (#$ . 68496) "P"])
(defalias 'comint-read-noecho #[513 "\300!\207" [read-passwd] 4 "\n\n(fn PROMPT &optional IGNORE)"])
#@285 Read a string without echoing.
Then send it to the process running in the current buffer.
The string is sent using `comint-input-sender'.
Security bug: your string can still be temporarily recovered with
\[view-lossage]; `clear-this-command-keys' can fix that.

(fn &optional PROMPT)
(defalias 'send-invisible #[256 "\301p!\302\303 !p=\203\304\202\305\306p\"\2038\307\206\310P!\211;\2030\311 \210\"\2023\312\313!\262\202<\314\315p\"\207" [comint-input-sender get-buffer-process window-buffer selected-window "" format "(In buffer %s) " read-passwd "Non-echoed text: " comint-snapshot-last-prompt message "Warning: text will be echoed" error "Buffer %s has no process"] 7 (#$ . 69053) "P"])
#@317 Prompt in the minibuffer for password and send without echoing.
This function uses `send-invisible' to read and send a password to the buffer's
process if STRING contains a password prompt defined by
`comint-password-prompt-regexp'.

This function could be in the list `comint-output-filter-functions'.

(fn STRING)
(defalias 'comint-watch-for-password-prompt #[257 "\301\"\205\301\302\"\203\303\304\305\211$\262\306!\207" [comint-password-prompt-regexp string-match "^[ \n
	\f]+" replace-match "" t send-invisible] 6 (#$ . 69767)])
#@99 Like `process-send-string', but also does extra bookkeeping for Comint mode.

(fn PROCESS STRING)
(defalias 'comint-send-string #[514 "\203r\300!\203\301!\202\302!q\210\303 \210)\202 \303 \210\304\"\207" [processp process-buffer get-buffer comint-snapshot-last-prompt process-send-string] 5 (#$ . 70319)])
#@102 Like `process-send-region', but also does extra bookkeeping for Comint mode.

(fn PROCESS START END)
(defalias 'comint-send-region #[771 "\203r\300!\203\301!\202\302!q\210\303 \210)\202 \303 \210\304#\207" [processp process-buffer get-buffer comint-snapshot-last-prompt process-send-region] 7 (#$ . 70645)])
#@88 Delete all output from interpreter since last input.
Does not delete the prompt.

(fn)
(defalias 'comint-delete-output #[0 "\302p!\303\304\212\305!b\210\306y\210\307 	|\210\305!b\210\310`{P\262\211`|\266)\311\")\207" [inhibit-read-only comint-last-input-end get-buffer-process nil t process-mark 0 point-marker "*** output flushed ***\n" comint-output-filter] 6 (#$ . 70973) nil])
#@698 Write output from interpreter since last input to FILENAME.
Any prompt at the end of the output is not written.

If the optional argument APPEND (the prefix argument when interactive)
is non-nil, the output is appended to the file instead.

If the optional argument MUSTBENEW is non-nil, check for an existing
file with the same name.  If MUSTBENEW is `excl', that means to get an
error if the file already exists; never overwrite.  If MUSTBENEW is
neither nil nor `excl', that means ask for confirmation before
overwriting, but do go ahead and overwrite the file if the user
confirms.  When interactive, MUSTBENEW is nil when appending, and t
otherwise.

(fn FILENAME &optional APPEND MUSTBENEW)
(defalias 'comint-write-output #[769 "\212\301\302p!!b\210\303y\210\304`\305\211&)\207" [comint-last-input-end process-mark get-buffer-process 0 write-region nil] 11 (#$ . 71370) (byte-code "\301\203	\302\202\n\303!\211?E\207" [current-prefix-arg read-file-name "Append output to file: " "Write output to file: "] 3)])
#@129 Append output from interpreter since last input to FILENAME.
Any prompt at the end of the output is not written.

(fn FILENAME)
(defalias 'comint-append-output-to-file #[257 "\300\301\"\207" [comint-write-output t] 4 (#$ . 72403) "fAppend output to file: "])
#@133 Display start of this batch of interpreter output at top of window.
Sets mark to the value of point when this command is run.

(fn)
(defalias 'comint-show-output #[0 "\302 \210\303!\206\nd	\203 \211b\210\304\305!\210\306\307 `\"\210\310 \202*\311!b\210\306\307 `\"\207" [comint-last-input-end comint-use-prompt-regexp push-mark marker-position beginning-of-line 0 set-window-start selected-window comint-skip-prompt field-beginning] 4 (#$ . 72670) nil])
#@115 Interrupt the current subjob.
This command also kills the pending input
between the process mark and point.

(fn)
(defalias 'comint-interrupt-subjob #[0 "\301 \210\302\303\"\207" [comint-ptyp comint-skip-input interrupt-process nil] 3 (#$ . 73136) nil])
#@125 Send kill signal to the current subjob.
This command also kills the pending input
between the process mark and point.

(fn)
(defalias 'comint-kill-subjob #[0 "\301 \210\302\303\"\207" [comint-ptyp comint-skip-input kill-process nil] 3 (#$ . 73398) nil])
#@125 Send quit signal to the current subjob.
This command also kills the pending input
between the process mark and point.

(fn)
(defalias 'comint-quit-subjob #[0 "\301 \210\302\303\"\207" [comint-ptyp comint-skip-input quit-process nil] 3 (#$ . 73660) nil])
#@379 Stop the current subjob.
This command also kills the pending input
between the process mark and point.

WARNING: if there is no current subjob, you can end up suspending
the top-level process running in the buffer.  If you accidentally do
this, use \[comint-continue-subjob] to resume the process.  (This
is not a problem with most shells, since they ignore this signal.)

(fn)
(defalias 'comint-stop-subjob #[0 "\301 \210\302\303\"\207" [comint-ptyp comint-skip-input stop-process nil] 3 (#$ . 73922) nil])
#@117 Send CONT signal to process buffer's process group.
Useful if you accidentally suspend the top-level process.

(fn)
(defalias 'comint-continue-subjob #[0 "\301\302\"\207" [comint-ptyp continue-process nil] 3 (#$ . 74438) nil])
#@151 Skip all pending input, from last stuff output by interpreter to point.
This means mark it as if it had been sent as input, without sending it.

(fn)
(defalias 'comint-skip-input #[0 "\302\303\304\305\211\"\210*\303\210`\306\307p!!\310\311\312 !\261\210\211U\205%\211`\303\223\207" [comint-input-filter-functions comint-input-sender ignore nil comint-send-input t process-mark get-buffer-process "  " key-description this-command-keys] 5 (#$ . 74673)])
#@69 Kill all text from last stuff output by interpreter to point.

(fn)
(defalias 'comint-kill-input #[0 "\300\301p!!`\302!V\205\303`\"\207" [process-mark get-buffer-process marker-position kill-region] 4 (#$ . 75138) nil])
#@149 Delete ARG characters forward or send an EOF to subprocess.
Sends an EOF only if point is at the end of the buffer and there is no input.

(fn ARG)
(defalias 'comint-delchar-or-maybe-eof #[257 "\300p!m\203\211\203`\301\302!!U\203\303 \202\304!\207" [get-buffer-process marker-position process-mark comint-send-eof delete-char] 6 (#$ . 75369) "p"])
#@52 Send an EOF to the current buffer's process.

(fn)
(defalias 'comint-send-eof #[0 "\300\301\211\"\210\302 \207" [comint-send-input t process-send-eof] 3 (#$ . 75733) nil])
#@309 Search backward through buffer for input fields that match REGEXP.
If `comint-use-prompt-regexp' is non-nil, then input fields are identified
by lines that match `comint-prompt-regexp'.

With prefix argument N, search for Nth previous match.
If N is negative, find the next or Nth next match.

(fn REGEXP N)
(defalias 'comint-backward-matching-input #[514 "\2035	\302Q\212\303V\203\303\202\304\210\305\306\307$\205 `)\211\204.\310\311!\210\312 \2024\211b\210\313\306!\207\211\303W\203?\314\202@\304\212\303U\204c\305\306\307$\204T\315\311!\210\316`\317\"\204AZ\262\202A\320 )\211b\207" [comint-use-prompt-regexp comint-prompt-regexp ".*" 0 1 re-search-backward nil t message "Not found" ding comint-bol -1 user-error get-char-property field field-beginning] 8 (#$ . 75912) (comint-regexp-arg "Backward input matching (regexp): ")])
#@317 Search forward through buffer for input fields that match REGEXP.
If `comint-use-prompt-regexp' is non-nil, then input fields are identified
by lines that match `comint-prompt-regexp'.

With prefix argument N, search for Nth following match.
If N is negative, find the previous or Nth previous match.

(fn REGEXP N)
(defalias 'comint-forward-matching-input #[514 "\300[\"\207" [comint-backward-matching-input] 5 (#$ . 76777) (comint-regexp-arg "Forward input matching (regexp): ")])
#@234 Move to end of Nth next prompt in the buffer.
If `comint-use-prompt-regexp' is nil, then this means the beginning of
the Nth next `input' field, otherwise, it means the Nth occurrence of
text matching `comint-prompt-regexp'.

(fn N)
(defalias 'comint-next-prompt #[257 "\203	\211\303V\203\304\202\303\210\305!\210\306 )\207`\307\211\303U\204k\262\303V\2034\310\311\"\2028\312\311\"\262U\203O\303V\203Id\262\303\262\202\313\311\"\204\303W\203aT\202cS\262\262\202\205qb\207" [comint-use-prompt-regexp comint-prompt-regexp paragraph-start 0 1 forward-paragraph comint-skip-prompt nil next-single-char-property-change field previous-single-char-property-change get-char-property] 7 (#$ . 77269) "p"])
#@242 Move to end of Nth previous prompt in the buffer.
If `comint-use-prompt-regexp' is nil, then this means the beginning of
the Nth previous `input' field, otherwise, it means the Nth occurrence of
text matching `comint-prompt-regexp'.

(fn N)
(defalias 'comint-previous-prompt #[257 "\300[!\207" [comint-next-prompt] 3 (#$ . 78018) "p"])
(defvar comint-insert-previous-argument-last-start-pos nil)
(make-variable-buffer-local 'comint-insert-previous-argument-last-start-pos)
(defvar comint-insert-previous-argument-last-index nil)
(make-variable-buffer-local 'comint-insert-previous-argument-last-index)
#@502 Insert the INDEXth argument from the previous Comint command-line at point.
Spaces are added at beginning and/or end of the inserted string if
necessary to ensure that it's separated from adjacent arguments.
Interactively, if no prefix argument is given, the last argument is inserted.
Repeated interactive invocations will cycle through the same argument
from progressively earlier commands (using the value of INDEX specified
with the first command).
This command is like `M-.' in bash.

(fn INDEX)
(defalias 'comint-insert-previous-argument #[257 "\211\203	\305!\262	=\203\n`|\210\262\202$\306\211\n\204$\307 `\310 X\2031\311 \210\2024\312 \210\n`\306\223\210\313\314!\315\316\"\203J\211\314\211\224O\262\317\211#c\266\f\206W\314Tl?\205`\312 \207" [last-command this-command comint-insert-previous-argument-last-start-pos comint-insert-previous-argument-last-index comint-input-ring-index prefix-numeric-value nil make-marker comint-line-beginning-position comint-bol just-one-space comint-previous-input-string 0 string-match "[ 	\n]*&" comint-arguments] 6 (#$ . 78628) "P"])
#@863 Update read-only status of newline before point.
The `fence' read-only property is used to indicate that a newline
is read-only for no other reason than to "fence off" a
following front-sticky read-only region.  This is used to
implement comint read-only prompts.  If the text after a newline
changes, the read-only status of that newline may need updating.
That is what this function does.

This function does nothing if point is not at the beginning of a
line, or is at the beginning of the accessible portion of the buffer.
Otherwise, if the character after point has a front-sticky
read-only property, then the preceding newline is given a
read-only property of `fence', unless it already is read-only.
If the character after point does not have a front-sticky
read-only property, any read-only property of `fence' on the
preceding newline is removed.

(fn)
(defalias 'comint-update-fence #[0 "`\301\302\"\303n\205Io?\205I\301\304\"\2039\211<\203\"\304>\202#\303\2039\301S\304\"?\205I\305S\304\306$\202I\301S\304\"\306=\205I\307S\310#)\207" [inhibit-modification-hooks get-text-property front-sticky t read-only put-text-property fence remove-list-of-text-properties (read-only)] 7 (#$ . 79739)])
#@485 Kill current line, ignoring read-only and field properties.
With prefix arg COUNT, kill that many lines starting from the current line.
If COUNT is negative, kill backward.  Also kill the preceding newline,
instead of the trailing one.  (This is meant to make \[repeat] work well
with negative arguments.)
If COUNT is zero, kill current line but exclude the trailing newline.
The read-only status of newlines is updated with `comint-update-fence',
if necessary.

(fn &optional COUNT)
(defalias 'comint-kill-whole-line #[256 "\302\211\303!\210\211\304Y\205\305 *\207" [inhibit-field-text-motion inhibit-read-only t kill-whole-line 0 comint-update-fence] 3 (#$ . 80966) "p"])
#@828 Like `kill-region', but ignores read-only properties, if safe.
This command assumes that the buffer contains read-only
"prompts" which are regions with front-sticky read-only
properties at the beginning of a line, with the preceding newline
being read-only to protect the prompt.  This is true of the
comint prompts if `comint-prompt-read-only' is non-nil.  This
command will not delete the region if this would create mutilated
or out of place prompts.  That is, if any part of a prompt is
deleted, the entire prompt must be deleted and all remaining
prompts should stay at the beginning of a line.  If this is not
the case, this command just calls `kill-region' with all
read-only properties intact.  The read-only status of newlines is
updated using `comint-update-fence', if necessary.

(fn BEG END &optional YANK-HANDLER)
(defalias 'comint-kill-region #[770 "\212^]b\210n\301\302\"\301\303\"\205\"\211<\203!\303>\202\"\304b\210n\301\302\"\301\303\"\205>\211<\203=\303>\202>\304\204J\204R\211\204R\204]\211\203]\305#\202k\304\305#\210\306 )\266\210)\207" [inhibit-read-only get-text-property front-sticky read-only t kill-region comint-update-fence] 15 (#$ . 81652) "r"])
(set-advertised-calling-convention 'comint-kill-region '(beg end) "23.3")
#@1462 Compute the defaults for `load-file' and `compile-file' commands.

PREVIOUS-DIR/FILE is a pair (DIRECTORY . FILENAME) from the last
source-file processing command, or nil if there hasn't been one yet.
SOURCE-MODES is a list used to determine what buffers contain source
files: if the major mode of the buffer is in SOURCE-MODES, it's source.
Typically, (lisp-mode) or (scheme-mode).

If the command is given while the cursor is inside a string, *and*
the string is an existing filename, *and* the filename is not a directory,
then the string is taken as default.  This allows you to just position
your cursor over a string that's a filename and have it taken as default.

If the command is given in a file buffer whose major mode is in
SOURCE-MODES, then the filename is the default file, and the
file's directory is the default directory.

If the buffer isn't a source file buffer (e.g., it's the process buffer),
then the default directory & file are what was used in the last source-file
processing command (i.e., PREVIOUS-DIR/FILE).  If this is the first time
the command has been run (PREVIOUS-DIR/FILE is nil), the default directory
is the cwd, with no default file.  ("no default file" = nil)

SOURCE-MODES is typically going to be something like (tea-mode)
for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode)
for Soar programs, etc.

The function returns a pair: (default-directory . default-file).

(fn PREVIOUS-DIR/FILE SOURCE-MODES)
(defalias 'comint-source-default #[514 "\203	>\203\303!\304!B\207\206\n\305B\207" [buffer-file-name major-mode default-directory file-name-directory file-name-nondirectory nil] 5 (#$ . 82951)])
#@379 Check whether to save buffers visiting file FNAME.
Prior to loading or compiling (or otherwise processing) a file (in the CMU
process-in-a-buffer modes), this function can be called on the filename.
If the file is loaded into a buffer, and the buffer is modified, the user
is queried to see if he wants to save the buffer before proceeding with
the load or compile.

(fn FNAME)
(defalias 'comint-check-source #[257 "\300!\211\205\301!\205\302\303\304\305!\"!\205r\211q\210\306 )\207" [get-file-buffer buffer-modified-p y-or-n-p format "Save buffer %s first? " buffer-name save-buffer] 7 (#$ . 84624)])
#@43 Return string around point, or nil.

(fn)
(defalias 'comint-extract-string #[0 "\300 \3018\205 \302\303\304\305\306\307\310!\311\"\312\313%D\314\303\315\302EDC\217\207" [syntax-ppss 3 #1=#:err funcall make-byte-code 0 "\301\302\3008T\302\3008b\210\303 \210`S\"\207" vconcat vector [buffer-substring-no-properties 8 forward-sexp] 4 "\n\n(fn)" error #[257 "\300\207" [nil] 2 "\n\n(fn IGNORED)"]] 9 (#$ . 85241)])
#@774 Prompt for filenames in commands that process source files,
e.g. loading or compiling a file.
Provides a default, if there is one, and returns the result filename.

See `comint-source-default' for more on determining defaults.

PROMPT is the prompt string.  PREV-DIR/FILE is the (DIRECTORY . FILE) pair
from the last source processing command.  SOURCE-MODES is a list of major
modes used to determine what file buffers contain source files.  (These
two arguments are used for determining defaults.)  If MUSTMATCH-P is true,
then the filename reader will only accept a file that exists.

A typical use:
 (interactive (comint-get-source "Compile file: " prev-lisp-dir/file
                                 '(lisp-mode) t))

(fn PROMPT PREV-DIR/FILE SOURCE-MODES MUSTMATCH-P)
(defalias 'comint-get-source #[1028 "\300\"\301 \211\205)\302\303\304\305\306\307\310!\311\"\312\313%D\314\303\315\302EDC\217\205)\316!?\211\2033\317!\2025@\203?\320!\202AA\321\203O\322\323#\202Q	\211P	$\324\325!!C\207" [comint-source-default comint-extract-string #1=#:err funcall make-byte-code 0 "\301\300!\207" vconcat vector [file-exists-p] 2 "\n\n(fn)" error #[257 "\300\207" [nil] 2 "\n\n(fn IGNORED)"] file-directory-p file-name-directory file-name-nondirectory read-file-name format "%s(default %s) " expand-file-name substitute-in-file-name] 14 (#$ . 85663)])
#@159 Send to the inferior process PROC the string STR.
Pop-up but do not select a window for the inferior process so that
its response can be seen.

(fn PROC STR)
(defalias 'comint-proc-query #[514 "\300!\301!\302!\210q\210\303\304\"\305!\306\"\210\307!\210\310\"?\205G\311!\312\"\210\313\304!\210\310\"\204A\314!\202E\312\"\262\266\202\207" [process-buffer process-mark display-buffer get-buffer-window 0 marker-position comint-send-string accept-process-output pos-visible-in-window-p window-point set-window-point sit-for push-mark] 10 (#$ . 87040)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\300\312\302\303\313DD\314\306\315\310\311&\210\300\316\302\303\317DD\320\306\307\310\311&\210\300\321\302\303\322DD\323\306\324\310\311&\207" [custom-declare-variable comint-completion-autolist funcall function #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, automatically list possibilities on partial completion.\nThis mirrors the optional behavior of tcsh." :type boolean :group comint-completion comint-completion-addsuffix #[0 "\300\207" [t] 1 "\n\n(fn)"] "If non-nil, add ` ' to file names.\nIt can either be a string FILESUFFIX or a cons (DIRSUFFIX . FILESUFFIX)\nwhere DIRSUFFIX is ignored and FILESUFFIX is a string added on unambiguous\nor exact completion.\nThis mirrors the optional behavior of tcsh." (choice (const :tag "None" nil) (const :tag "Add SPC" t) (string :tag "File suffix") (cons :tag "Obsolete suffix pair" (string :tag "Ignored") (string :tag "File suffix"))) comint-completion-recexact #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, use shortest completion if characters cannot be added.\nThis mirrors the optional behavior of tcsh.\n\nA non-nil value is useful if `comint-completion-autolist' is non-nil too." comint-completion-fignore #[0 "\300\207" [nil] 1 "\n\n(fn)"] "List of suffixes to be disregarded during file completion.\nThis mirrors the optional behavior of bash and tcsh.\n\nNote that this applies to `comint-dynamic-complete-filename' only." (repeat (string :tag "Suffix"))] 8)
#@171 Prefix prepended to absolute file names taken from process input.
This is used by Comint's and shell's completion functions, and by shell's
directory tracking functions.
(defvar comint-file-name-prefix (purecopy "") (#$ . 89108))
#@198 String of characters valid in a file name.
Note that all non-ASCII characters are considered valid in a file name
regardless of what this variable says.

This is a good thing to set in mode hooks.
(defvar comint-file-name-chars (byte-code "\301>\203\302\207\303\207" [system-type (ms-dos windows-nt cygwin) "~/A-Za-z0-9_^$!#%&{}@`'.,:()-" "[]~/A-Za-z0-9+@:_.$#%,={}-"] 2) (#$ . 89345))
#@103 List of characters to quote with `\' when in a file name.

This is a good thing to set in mode hooks.
(defvar comint-file-name-quote-list nil (#$ . 89741))
#@88 Return expanded DIRECTORY, with `comint-file-name-prefix' if absolute.

(fn DIRECTORY)
(defalias 'comint-directory #[257 "\301\302!\203
P\202!\207" [comint-file-name-prefix expand-file-name file-name-absolute-p] 4 (#$ . 89903)])
#@240 Return the word of WORD-CHARS at point, or nil if none is found.
Word constituents are considered to be those in WORD-CHARS, which is like the
inside of a "[...]" (see `skip-chars-forward'), plus all non-ASCII characters.

(fn WORD-CHARS)
(defalias 'comint-word #[257 "\212`\301\211\204:`\302P\301x\210\203`SSf\303=\203\304u\210o\204-`Sf\305Y\203-\306u\210`U\2036\307\262\210\202`W\205I\310`D!\210\311\312!\266\202)\207" [comint-file-name-quote-list nil "\\\\" 92 -2 128 -1 t set-match-data match-string 0] 6 (#$ . 90146)])
#@199 Return FILENAME with environment variables substituted.
Supports additional environment variable syntax of the command
interpreter (e.g., the percent notation of cmd.exe on Windows).

(fn FILENAME)
(defalias 'comint-substitute-in-file-name #[257 "\301!\302>\203C\303\211\304 \305\306\307\310\311\312!\313\"\314\315%DC\216\316\317\"\203@\320\321\"\262\322!\2062\323\262\324\325\211$\262\202)\266\211\207" [system-type substitute-in-file-name (ms-dos windows-nt) nil match-data funcall make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "\n\n(fn)" string-match "%\\([^\\\\/]*\\)%" match-string 1 getenv "" replace-match t] 12 (#$ . 90694)])
#@87 Return the filename at point as-is, or nil if none is found.
See `comint-word'.

(fn)
(defalias 'comint--match-partial-filename #[0 "\301!\207" [comint-file-name-chars comint-word] 2 (#$ . 91389)])
(defalias 'comint--unquote&requote-argument #[513 "\211C\211@\204\211\302\240\210\302\303C\304\305\306>\205\307	\205\310R\303C\311\303\312\n#\211\262\203z\f\nO%\210\313\224\203U\314\313\"\302\225%\210\202s\315\224\203o\316\314\315\"!\302\225[%\210\202s\317\320!\210\302\225\262\202!\f\n\303O
G%\210\321\322@\237\323#@\324E\266\206\207" [system-type comint-file-name-quote-list 0 nil "\\$\\(?:\\([[:alpha:]][[:alnum:]]*\\)" "\\|{\\(?1:[^{}]+\\)}\\)" (ms-dos windows-nt) "\\|%\\(?1:[^\\\\/]*\\)%" "\\|\\\\\\(.\\)" #[1285 "@B\240\210\211@GZ\240\210@\206@\300V?\205-\300W\203([\202,@\\\240\207" [0] 8 "\n\n(fn UPOS USTRS QUPOS STR END)"] string-match 2 match-string 1 getenv error "Unexpected case in comint--unquote&requote-argument!" mapconcat identity "" comint-quote-filename] 17 "\n\n(fn QSTR &optional UPOS)"])
(defalias 'comint--unquote-argument #[257 "\300!@\207" [comint--unquote&requote-argument] 3 "\n\n(fn STR)"])
(byte-code "\300\301\302\303#\210\304\301\302\305#\207" [defalias comint--unquote&expand-filename comint--unquote-argument nil make-obsolete "24.3"] 4)
#@139 Return the unquoted&expanded filename at point, or nil if none is found.
Environment variables are substituted.  See `comint-word'.

(fn)
(defalias 'comint-match-partial-filename #[0 "\300 \211\205	\301!\207" [comint--match-partial-filename comint--unquote-argument] 3 (#$ . 92745)])
#@123 Return FILENAME with magic characters quoted.
Magic characters are those in `comint-file-name-quote-list'.

(fn FILENAME)
(defalias 'comint-quote-filename #[257 "\204\207\301!\302 \303\304\305\306\307\310!\311\"\312\313%DC\216\305\314#\2035\315\316\317\211$\262\305\225T\262\202\210)\262\207" [comint-file-name-quote-list regexp-opt-charset match-data funcall make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "\n\n(fn)" string-match replace-match "\\\\\\&" nil] 10 (#$ . 93038)])
#@65 Return FILENAME with quoted characters unquoted.

(fn FILENAME)
(defalias 'comint-unquote-filename #[257 "\204\207\301 \302\303\304\305\306\307!\310\"\311\312%DC\216\313\314\315\316$)\207" [comint-file-name-quote-list match-data funcall make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "\n\n(fn)" replace-regexp-in-string "\\\\\\(.\\)" "\\1" t] 9 (#$ . 93575)])
(make-obsolete 'comint-unquote-filename nil "24.3")
(defalias 'comint--requote-argument #[514 "\300\"\211A@\3018B\207" [comint--unquote&requote-argument 2] 6 "\n\n(fn UPOS QSTR)"])
(defalias 'comint-completion-at-point #[0 "\300\301!\207" [run-hook-with-args-until-success comint-dynamic-complete-functions] 2 "\n\n(fn)"])
(byte-code "\300\301\302\303#\210\304\301\302\305#\207" [defalias comint-dynamic-complete completion-at-point nil make-obsolete "24.1"] 4)
#@635 Dynamically complete the filename at point.
Completes if after a filename.
This function is similar to `comint-replace-by-expanded-filename', except that
it won't change parts of the filename already entered in the buffer; it just
adds completion characters to the end of the filename.  A completions listing
may be shown in a separate buffer if completion is ambiguous.

Completion is dependent on the value of `comint-completion-addsuffix',
`comint-completion-recexact' and `comint-completion-fignore', and the timing of
completions listing is dependent on the value of `comint-completion-autolist'.

Returns t if successful.

(fn)
(defalias 'comint-dynamic-complete-filename #[0 "\300 \205\301\302 !\204\303\304!\210\305 \306@A@\3078#\262\207" [comint--match-partial-filename window-minibuffer-p selected-window message "Completing file name..." comint--complete-file-name-data completion-in-region 2] 6 (#$ . 94448) nil])
#@61 Return completion data for filename at point, if any.

(fn)
(defalias 'comint-filename-completion #[0 "\300 \205\301 \207" [comint--match-partial-filename comint--complete-file-name-data] 1 (#$ . 95388)])
(defalias 'comint-completion-file-name-table #[771 "\301!\204\f\302#\207\211\303>\203\302P#\207\211\204?\302P#\211;\203=\304\305\306!P\"\203=\211\307\225\310O\202>\211\207\302#\207" [comint-file-name-prefix file-name-absolute-p completion-file-name-table (t lambda) string-match "\\`" regexp-quote 0 nil] 8 "\n\n(fn STRING PRED ACTION)"])
#@115 Function to use for completion of quoted data.
See `completion-table-with-quoting' and `comint-requote-function'.
(defvar comint-unquote-function 'comint--unquote-argument (#$ . 95965))
#@115 Function to use for completion of quoted data.
See `completion-table-with-quoting' and `comint-unquote-function'.
(defvar comint-requote-function 'comint--requote-argument (#$ . 96158))
#@58 Return the completion data for file name at point.

(fn)
(defalias 'comint--complete-file-name-data #[0 "\204\303\202;\203\202:\204\304\202A\305 \211\203'\306\224\202(`\2031\306\225\2022`\307\310	\n#\311\312\313\314\315!\316\"\317\320%E\321G!?\205_\322\311\323\324\314\315!\325\"\326\327%D\244\207" [comint-completion-addsuffix comint-unquote-function comint-requote-function "" " " comint--match-partial-filename 0 completion-table-with-quoting comint-completion-file-name-table make-byte-code 771 "	\n\305\300$*\207" vconcat vector [read-file-name-completion-ignore-case comint-completion-fignore completion-ignored-extensions completion-ignore-case complete-with-action] 8 "\n\n(fn STRING PRED ACTION)" zerop :exit-function 514 "\211\301=\205\302\303\300!!\203\304\225b\207\300c\207" [finished looking-at regexp-quote 0] 5 "\n\n(fn S STATUS)"] 13 (#$ . 96350)])
#@118 Dynamically complete at point as a filename.
See `comint-dynamic-complete-filename'.  Returns t if successful.

(fn)
(defalias 'comint-dynamic-complete-as-filename #[0 "\300 \301@A@\3028#\207" [comint--complete-file-name-data completion-in-region 2] 6 (#$ . 97262)])
(make-obsolete 'comint-dynamic-complete-as-filename 'comint-filename-completion "24.1")
#@376 Dynamically expand and complete the filename at point.
Replace the filename with an expanded, canonicalized and
completed replacement, i.e. substituting environment
variables (e.g. $HOME), `~'s, `..', and `.', and making the
filename absolute.  For expansion see `expand-file-name' and
`substitute-in-file-name'.  For completion see
`comint-dynamic-complete-filename'.

(fn)
(defalias 'comint-replace-by-expanded-filename #[0 "\300 \211\205\301\302!\303\211#\210\304 \207" [comint-match-partial-filename replace-match expand-file-name t comint-dynamic-complete-filename] 5 (#$ . 97627) nil])
#@567 Dynamically complete STUB from CANDIDATES list.
This function inserts completion characters at point by
completing STUB from the strings in CANDIDATES.  If completion is
ambiguous, possibly show a completions listing in a separate
buffer.

Return nil if no completion was inserted.
Return `sole' if completed with the only completion match.
Return `shortest' if completed with the shortest match.
Return `partial' if completed as far as possible.
Return `listed' if a completion listing was shown.

See also `comint-dynamic-complete-filename'.

(fn STUB CANDIDATES)
(defalias 'comint-dynamic-simple-complete #[514 "\305>\306\307 !\n\204\310\202\n:\204\311\202\nA\312\"\211\204:\2030\313\314\"\210\2026\315\314\"\210\316\202\274\211G\317U\203n\211@\211\230\203U\204e\315\320!\210\202e\211G\316Oc\210\204e\315\321!\210c\210\322\262\202\274\323\"\211G\316Oc\210\203\235\n\203\235\230\203\235\211\235\203\235c\210\204\231\315\324!\210\325\202\272\f\204\247\230\203\261\326\"\210\327\202\272\204\271\315\330!\210\331\262)\207" [system-type completion-ignore-case comint-completion-addsuffix comint-completion-recexact comint-completion-autolist (ms-dos windows-nt cygwin) window-minibuffer-p selected-window "" " " all-completions minibuffer-message "No completions of %s" message nil 1 "Sole completion" "Completed" sole try-completion "Completed shortest" shortest comint-dynamic-list-completions listed "Partially completed" partial] 9 (#$ . 98229)])
(make-obsolete 'comint-dynamic-simple-complete 'completion-in-region "24.1")
#@73 Display a list of possible completions for the filename at point.

(fn)
(defalias 'comint-dynamic-list-filename-completions #[0 "\302 \3038\304\305@A@\304\211\306%\307\310\311#\210\312\313\314\315\316\317!\320\"\303\321%DC\216\322\323!+\207" [minibuffer-completion-table minibuffer-completion-predicate comint--complete-file-name-data 2 nil make-overlay t overlay-put field completion funcall make-byte-code 0 "\301\300!\207" vconcat vector [delete-overlay] "\n\n(fn)" call-interactively minibuffer-completion-help] 9 (#$ . 99823) nil])
(defvar comint-displayed-dynamic-completions nil)
(defvar comint-dynamic-list-completions-config nil)
#@204 Display a list of sorted COMPLETIONS.
The meaning of COMMON-SUBSTRING is the same as in `display-completion-list'.
Typing SPC flushes the completions buffer.

(fn COMPLETIONS &optional COMMON-SUBSTRING)
(defalias 'comint-dynamic-list-completions #[513 "\306\307\310\"\311\312\"\262	=\203i\211\203i\313!\203i\314!\203i\315\314!!\203i\316\317\314!\"\232\203ir\314!q\210\320d\"\203H\321e\"\210\202e\322 r\323\324\310\325\326\327!\330\"\331\332%DC\216\333!\210\334 \210*\210)\202\257\335 r\336\307!q\210p\337 \210\340\211\341\2116\34178\342 \210\343\344!\210+\2119\345\"\210\346!\210)\266\347\350 !\203\253\351\352!\210\202\257\353\352!\210\340\211r\354\307!q\210\355\317!\210\356\340!\262\310H\262\211:\205\352\357!:\205\352\314\357!\211:@)!\354\307!=\205\352\360!\361=)\203\370\362!\210\363\n!\202\n\211\364=\203\363\n!\202\n\365!\211;\266\202\207" [last-command this-command comint-dynamic-list-completions-config default-directory buffer-read-only buffer-file-name get-buffer-window "*Completions*" 0 sort string-lessp window-live-p window-buffer buffer-name buffer-local-value comint-displayed-dynamic-completions pos-visible-in-window-p set-window-start internal--before-save-selected-window funcall make-byte-code "\301\300!\207" vconcat vector [internal--after-save-selected-window] 2 "\n\n(fn)" select-window scroll-up current-window-configuration get-buffer-create kill-all-local-variables nil t erase-buffer run-hooks temp-buffer-setup-hook display-completion-list internal-temp-output-buffer-show window-minibuffer-p selected-window minibuffer-message "Type space to flush; repeat completion command to scroll" message get-buffer make-local-variable read-key-sequence event-start key-binding mouse-choose-completion choose-completion set-window-configuration 32 listify-key-sequence buffer-undo-list inhibit-modification-hooks inhibit-read-only standard-output position unread-command-events] 12 (#$ . 100477)])
#@214 After fetching a line from input history, this fetches the following line.
In other words, this recalls the input line after the line you recalled last.
You can use this to repeat a sequence of input lines.

(fn)
(defalias 'comint-get-next-from-history #[0 "\203T\302\303!\207\304\305!\207" [comint-save-input-ring-index comint-input-ring-index comint-next-input 1 message "No previous history command"] 2 (#$ . 102464) nil])
#@307 Accumulate a line to send as input along with more lines.
This inserts a newline so that you can enter more text
to be sent along with this line.  Use \[comint-send-input]
to send all the accumulated input, at once.
The entire accumulated text becomes one item in the input history
when you send it.

(fn)
(defalias 'comint-accumulate #[0 "\303c\210`\304\223\210	\205	S\211\207" [comint-accum-marker comint-input-ring-index comint-save-input-ring-index "\n" nil] 3 (#$ . 102902) nil])
#@137 Move point to the process mark.
The process mark separates output, and input already sent,
from input that has not yet been sent.

(fn)
(defalias 'comint-goto-process-mark #[0 "\300p!\206	\301\302!\303!b\210\304\305!\205\306\307!\207" [get-buffer-process user-error "Current buffer has no process" process-mark called-interactively-p interactive message "Point is now at the process mark"] 3 (#$ . 103398) nil])
#@590 Move point to beginning of line (after prompt) or to the process mark.
The first time you use this command, it moves to the beginning of the line
(but after the prompt, if any).  If you repeat it again immediately,
it moves point to the process mark.

The process mark separates the process output, along with input already sent,
from input that has not yet been sent.  Ordinarily, the process mark
is at the beginning of the current input line; but if you have
used \[comint-accumulate] to send multiple lines at once,
the process mark is at the beginning of the accumulated input.

(fn)
(defalias 'comint-bol-or-process-mark #[0 "\301=\204\n\302\303!\207\304 \207" [last-command comint-bol-or-process-mark comint-bol nil comint-goto-process-mark] 2 (#$ . 103821) nil])
#@38 Set the process mark at point.

(fn)
(defalias 'comint-set-process-mark #[0 "\300p!\206	\301\302!\303!`\304\223\210\305\306!\207" [get-buffer-process user-error "Current buffer has no process" process-mark nil message "Process mark set"] 4 (#$ . 104600) nil])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\207" [custom-declare-variable comint-redirect-verbose funcall function #[0 "\300\207" [nil] 1 "\n\n(fn)"] "If non-nil, print messages each time the redirection filter is invoked.\nAlso print a message when redirection is completed." :group comint :type boolean] 8)
#@595 List of functions to call before inserting redirected process output.
Each function gets one argument, a string containing the text received
from the subprocess.  It should return the string to insert, perhaps
the same string that was received, or perhaps a modified or transformed
string.

The functions on the list are called sequentially, and each one is given
the string returned by the previous one.  The string returned by the
last function is the text that is actually inserted in the redirection buffer.

You can use `add-hook' to add functions to this list
either globally or locally.
(defvar comint-redirect-filter-functions nil (#$ . 105191))
#@51 The buffer or list of buffers to put output into.
(defvar comint-redirect-output-buffer nil (#$ . 105851))
#@214 Regular expression that determines when to stop redirection in Comint.
When the redirection filter function is given output that matches this regexp,
the output is inserted as usual, and redirection is completed.
(defvar comint-redirect-finished-regexp nil (#$ . 105965))
#@263 If non-nil, the text that ends a redirection is included in it.
More precisely, the text that matches `comint-redirect-finished-regexp'
and therefore terminates an output redirection is inserted in the
redirection target buffer, along with the preceding output.
(defvar comint-redirect-insert-matching-regexp nil (#$ . 106244))
#@73 Non-nil means echo input in the process buffer even during redirection.
(defvar comint-redirect-echo-input nil (#$ . 106578))
#@61 Non-nil if redirection has completed in the current buffer.
(defvar comint-redirect-completed nil (#$ . 106710))
#@44 Original mode line for redirected process.
(defvar comint-redirect-original-mode-line-process nil (#$ . 106829))
#@451 If non-nil, check that redirection is likely to complete successfully.
More precisely, before starting a redirection, verify that the
regular expression `comint-redirect-finished-regexp' that controls
when to terminate it actually matches some text already in the process
buffer.  The idea is that this regular expression should match a prompt
string, and that there ought to be at least one copy of your prompt string
in the process buffer already.
(defvar comint-redirect-perform-sanity-check t (#$ . 106949))
#@144 The process filter that was in place when redirection is started.
When redirection is completed, the process filter is restored to
this value.
(defvar comint-redirect-original-filter-function nil (#$ . 107468))
#@258 Non-nil means `comint-redirect' can insert into read-only buffers.
This works by binding `inhibit-read-only' around the insertion.
This is useful, for instance, for insertion into Help mode buffers.
You probably want to set it locally to the output buffer.
(defvar comint-redirect-subvert-readonly nil (#$ . 107686))
#@554 Set up for output redirection.
This function sets local variables that are used by `comint-redirect-filter'
to perform redirection.

Output from COMINT-BUFFER is redirected to OUTPUT-BUFFER, until something
in the output matches FINISHED-REGEXP.

If optional argument ECHO-INPUT is non-nil, output is echoed to the
original Comint buffer.

This function is called by `comint-redirect-send-command-to-process',
and does not normally need to be invoked by the end user or programmer.

(fn OUTPUT-BUFFER COMINT-BUFFER FINISHED-REGEXP &optional ECHO-INPUT)
(defalias 'comint-redirect-setup #[1027 "rq\210\306\301!\210\306\302!\210\306\303!\210\306\304!\210\211\306\305!\210\307\203/\310\234\311PC\2021\312C\211)\207" [mode-line-process comint-redirect-original-mode-line-process comint-redirect-output-buffer comint-redirect-finished-regexp comint-redirect-echo-input comint-redirect-completed make-local-variable nil 0 " Redirection" ":%s Redirection"] 6 (#$ . 108010)])
#@70 End a Comint redirection.  See `comint-redirect-send-command'.

(fn)
(defalias 'comint-redirect-cleanup #[0 "\304\305p!\"\210	\306\211\207" [comint-redirect-original-filter-function comint-redirect-original-mode-line-process mode-line-process comint-redirect-completed set-process-filter get-buffer-process t] 3 (#$ . 108998) nil])
(defalias 'comint-redirect-remove-redirection 'comint-redirect-cleanup)
#@332 Filter function which redirects output from PROCESS to a buffer or buffers.
The variable `comint-redirect-output-buffer' says which buffer(s) to
place output in.

INPUT-STRING is the input from the Comint process.

This function runs as a process filter, and does not need to be invoked by the
end user.

(fn PROCESS INPUT-STRING)
(defalias 'comint-redirect-filter #[514 "\205r\302!q\210\303!\210\205	\205	\")\207" [comint-redirect-echo-input comint-redirect-original-filter-function process-buffer comint-redirect-preoutput-filter] 5 (#$ . 109412)])
#@295 Comint filter function which redirects Comint output to a buffer or buffers.
The variable `comint-redirect-output-buffer' says which buffer(s) to
place output in.

INPUT-STRING is the input from the Comint process.

This function does not need to be invoked by the end user.

(fn INPUT-STRING)
(defalias 'comint-redirect-preoutput-filter #[257 "<\203	\202C	\211\203E\203E\211@\306=\2038\307\301!\211\2034\2034\211@!\262\211A\262\202\210\202>\211@!\262\211A\262\202
\210\n\204Y\310\"\203Y\311\312\313\211$\262\212\211\203v\211@\314!q\210db\210\fc\210)A\266\202\202[\210)\203\206\315\316\317\320\321#\"\210\310\"\203\235\203\226\315\322!\210\323 \210\324\325!\210\203\246\211\202\247\312\207" [comint-redirect-output-buffer comint-redirect-filter-functions comint-redirect-insert-matching-regexp comint-redirect-finished-regexp comint-redirect-subvert-readonly inhibit-read-only t default-value string-match replace-match "" nil get-buffer-create message "Redirected output to buffer(s) %s" mapconcat identity " " "Redirection completed" comint-redirect-cleanup run-hooks comint-redirect-hook comint-redirect-verbose comint-redirect-echo-input] 9 (#$ . 109982)])
#@239 Send COMMAND to process in current buffer, with output to OUTPUT-BUFFER.
With prefix arg ECHO, echo output in process buffer.

If NO-DISPLAY is non-nil, do not show the output buffer.

(fn COMMAND OUTPUT-BUFFER ECHO &optional NO-DISPLAY)
(defalias 'comint-redirect-send-command #[1027 "\300p!\211\203\301p%\202\302\303!\207" [get-buffer-process comint-redirect-send-command-to-process error "No process for current buffer"] 11 (#$ . 111201) "sCommand: \nBOutput Buffer: \nP"])
#@224 Send COMMAND to PROCESS, with output to OUTPUT-BUFFER.
With prefix arg, echo output in process buffer.

If NO-DISPLAY is non-nil, do not show the output buffer.

(fn COMMAND OUTPUT-BUFFER PROCESS ECHO &optional NO-DISPLAY)
(defalias 'comint-redirect-send-command-to-process #[1284 "\303!\203\f\304!\202
\305!rq\210\203)\212db\210\306	\307\310#\204(\311\312!\210)\313p	$\210\314!\315\316\"\210\317p\320P\"\210\206Y\321\322<\203U@\202W!!)\207" [comint-redirect-perform-sanity-check comint-prompt-regexp comint-redirect-original-filter-function processp process-buffer get-buffer-process re-search-backward nil t error "No prompt found or `comint-prompt-regexp' not set properly" comint-redirect-setup process-filter set-process-filter comint-redirect-filter process-send-string "\n" display-buffer get-buffer-create] 12 (#$ . 111695) "sCommand: \nBOutput Buffer: \nbProcess Buffer: \nP"])
#@194 Send COMMAND to current process.
Return a list of expressions in the output which match REGEXP.
REGEXP-GROUP is the regular expression group in REGEXP to use.

(fn COMMAND REGEXP REGEXP-GROUP)
(defalias 'comint-redirect-results-list #[771 "\300\301p!$\207" [comint-redirect-results-list-from-process get-buffer-process] 8 (#$ . 112618)])
#@194 Send COMMAND to PROCESS.
Return a list of expressions in the output which match REGEXP.
REGEXP-GROUP is the regular expression group in REGEXP to use.

(fn PROCESS COMMAND REGEXP REGEXP-GROUP)
(defalias 'comint-redirect-results-list-from-process #[1028 "\301\302r\303!q\210\304 \210\305\302\306%\210\307!q\210\204&\310\302\311\"\210\202q\210eb\210\312!\2035\302y\210\313\302\306#\203J\314\224\225\"B\262\2025)\207" [comint-redirect-completed " *Comint Redirect Work Buffer*" nil get-buffer-create erase-buffer comint-redirect-send-command-to-process t process-buffer accept-process-output 1 looking-at re-search-forward buffer-substring-no-properties] 12 (#$ . 112966)])
(provide 'comint)

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net