aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Bernoulli2021-06-30 22:15:13 +0200
committerJonas Bernoulli2021-06-30 22:16:17 +0200
commitecec94dcf0ebeab39dc7949797b34a559f7eb266 (patch)
tree283d12b4e1ade45d88148fcbc074190087680b68
parent1a00bf16a72b03c9d79ec3bd301d02efc94f9683 (diff)
downloademacs-ecec94dcf0ebeab39dc7949797b34a559f7eb266.tar.gz
emacs-ecec94dcf0ebeab39dc7949797b34a559f7eb266.zip
* lisp/comint.el: Prefix headings with enough semicolons.
Outline headings must begin with three or more semicolons.
-rw-r--r--lisp/comint.el30
1 files changed, 15 insertions, 15 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index ef34174305f..9e406614b9a 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -54,7 +54,7 @@
54;; instead of shell-mode, see the notes at the end of this file. 54;; instead of shell-mode, see the notes at the end of this file.
55 55
56 56
57;; Brief Command Documentation: 57;;; Brief Command Documentation:
58;;============================================================================ 58;;============================================================================
59;; Comint Mode Commands: (common to all derived modes, like shell & cmulisp 59;; Comint Mode Commands: (common to all derived modes, like shell & cmulisp
60;; mode) 60;; mode)
@@ -106,7 +106,7 @@
106(require 'regexp-opt) ;For regexp-opt-charset. 106(require 'regexp-opt) ;For regexp-opt-charset.
107(eval-when-compile (require 'subr-x)) 107(eval-when-compile (require 'subr-x))
108 108
109;; Buffer Local Variables: 109;;; Buffer Local Variables:
110;;============================================================================ 110;;============================================================================
111;; Comint mode buffer local variables: 111;; Comint mode buffer local variables:
112;; comint-prompt-regexp string comint-bol uses to match prompt 112;; comint-prompt-regexp string comint-bol uses to match prompt
@@ -150,10 +150,10 @@
150 :group 'comint) 150 :group 'comint)
151 151
152;; Unused. 152;; Unused.
153;;; (defgroup comint-source nil 153;; (defgroup comint-source nil
154;;; "Source finding facilities in comint." 154;; "Source finding facilities in comint."
155;;; :prefix "comint-" 155;; :prefix "comint-"
156;;; :group 'comint) 156;; :group 'comint)
157 157
158(defvar comint-prompt-regexp "^" 158(defvar comint-prompt-regexp "^"
159 "Regexp to recognize prompts in the inferior process. 159 "Regexp to recognize prompts in the inferior process.
@@ -924,8 +924,8 @@ by the global keymap (usually `mouse-yank-at-click')."
924 ;; Insert the input at point 924 ;; Insert the input at point
925 (insert input))))) 925 (insert input)))))
926 926
927;; Input history processing in a buffer 927;;; Input history processing in a buffer
928;; =========================================================================== 928;;============================================================================
929;; Useful input history functions, courtesy of the Ergo group. 929;; Useful input history functions, courtesy of the Ergo group.
930 930
931;; Eleven commands: 931;; Eleven commands:
@@ -2847,7 +2847,7 @@ updated using `comint-update-fence', if necessary."
2847 (kill-region beg end) 2847 (kill-region beg end)
2848 (comint-update-fence)))))) 2848 (comint-update-fence))))))
2849 2849
2850;; Support for source-file processing commands. 2850;;; Support for source-file processing commands.
2851;;============================================================================ 2851;;============================================================================
2852;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have 2852;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have
2853;; commands that process files of source text (e.g. loading or compiling 2853;; commands that process files of source text (e.g. loading or compiling
@@ -2981,8 +2981,8 @@ A typical use:
2981;; -Olin 2981;; -Olin
2982 2982
2983 2983
2984;; Simple process query facility. 2984;;; Simple process query facility.
2985;; =========================================================================== 2985;;============================================================================
2986;; This function is for commands that want to send a query to the process 2986;; This function is for commands that want to send a query to the process
2987;; and show the response to the user. For example, a command to get the 2987;; and show the response to the user. For example, a command to get the
2988;; arglist for a Common Lisp function might send a "(arglist 'foo)" query 2988;; arglist for a Common Lisp function might send a "(arglist 'foo)" query
@@ -3018,8 +3018,8 @@ its response can be seen."
3018 (set-window-point proc-win opoint))))))) 3018 (set-window-point proc-win opoint)))))))
3019 3019
3020 3020
3021;; Filename/command/history completion in a buffer 3021;;; Filename/command/history completion in a buffer
3022;; =========================================================================== 3022;;============================================================================
3023;; Useful completion functions, courtesy of the Ergo group. 3023;; Useful completion functions, courtesy of the Ergo group.
3024 3024
3025;; Six commands: 3025;; Six commands:
@@ -3883,8 +3883,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use."
3883 (forward-line 1))) 3883 (forward-line 1)))
3884 (nreverse results)))) 3884 (nreverse results))))
3885 3885
3886;; Converting process modes to use comint mode 3886;;; Converting process modes to use comint mode
3887;; =========================================================================== 3887;;============================================================================
3888;; The code in the Emacs 19 distribution has all been modified to use comint 3888;; The code in the Emacs 19 distribution has all been modified to use comint
3889;; where needed. However, there are `third-party' packages out there that 3889;; where needed. However, there are `third-party' packages out there that
3890;; still use the old shell mode. Here's a guide to conversion. 3890;; still use the old shell mode. Here's a guide to conversion.