aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-06-03 05:58:08 +0000
committerRichard M. Stallman1992-06-03 05:58:08 +0000
commit328561fc91a2802b47ae9669110b8071e1696d4e (patch)
tree1d802fa6627dd3ea3b8bcf40e1186541d89a82df
parent5cd51471045769aa63048e989684828483cfd87d (diff)
downloademacs-328561fc91a2802b47ae9669110b8071e1696d4e.tar.gz
emacs-328561fc91a2802b47ae9669110b8071e1696d4e.zip
*** empty log message ***
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
-rw-r--r--lisp/flow-ctrl.el4
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 6cf7253b443..f6fb07b0d2f 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -255,7 +255,7 @@ rigidly along with this one."
255 (skip-chars-forward " \t") 255 (skip-chars-forward " \t")
256 (if (looking-at "\\s<\\s<\\s<") 256 (if (looking-at "\\s<\\s<\\s<")
257 ;; Don't alter indentation of a ;;; comment line. 257 ;; Don't alter indentation of a ;;; comment line.
258 nil 258 (goto-char (- (point-max) pos))
259 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<"))) 259 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
260 ;; Single-semicolon comment lines should be indented 260 ;; Single-semicolon comment lines should be indented
261 ;; as comment lines, not as code. 261 ;; as comment lines, not as code.
diff --git a/lisp/flow-ctrl.el b/lisp/flow-ctrl.el
index 4d3d68f49be..104aee3ac86 100644
--- a/lisp/flow-ctrl.el
+++ b/lisp/flow-ctrl.el
@@ -72,9 +72,9 @@
72;;;###autoload 72;;;###autoload
73(defun evade-flow-control-on (&rest losing-terminal-types) 73(defun evade-flow-control-on (&rest losing-terminal-types)
74 "Enable flow control if using one of a specified set of terminal types. 74 "Enable flow control if using one of a specified set of terminal types.
75Use `(evade-flow-control-on "vt100" "h19")' to enable flow control 75Use `(evade-flow-control-on \"vt100\" \"h19\")' to enable flow control
76on VT-100 and H19 terminals. When flow control is enabled, 76on VT-100 and H19 terminals. When flow control is enabled,
77you must type C-\ to get the effect of a C-s, and type C-^ 77you must type C-\\ to get the effect of a C-s, and type C-^
78to get the effect of a C-q." 78to get the effect of a C-q."
79 (let ((term (getenv "TERM")) 79 (let ((term (getenv "TERM"))
80 hyphend) 80 hyphend)