1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 10:31:37 -08:00

*** empty log message ***

This commit is contained in:
Richard M. Stallman 1992-06-03 05:58:08 +00:00
parent 5cd5147104
commit 328561fc91
2 changed files with 3 additions and 3 deletions

View file

@ -255,7 +255,7 @@ rigidly along with this one."
(skip-chars-forward " \t")
(if (looking-at "\\s<\\s<\\s<")
;; Don't alter indentation of a ;;; comment line.
nil
(goto-char (- (point-max) pos))
(if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
;; Single-semicolon comment lines should be indented
;; as comment lines, not as code.

View file

@ -72,9 +72,9 @@
;;;###autoload
(defun evade-flow-control-on (&rest losing-terminal-types)
"Enable flow control if using one of a specified set of terminal types.
Use `(evade-flow-control-on "vt100" "h19")' to enable flow control
Use `(evade-flow-control-on \"vt100\" \"h19\")' to enable flow control
on VT-100 and H19 terminals. When flow control is enabled,
you must type C-\ to get the effect of a C-s, and type C-^
you must type C-\\ to get the effect of a C-s, and type C-^
to get the effect of a C-q."
(let ((term (getenv "TERM"))
hyphend)