aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/term.el')
-rw-r--r--lisp/term.el17
1 files changed, 2 insertions, 15 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 41577c90301..5dd965d2d34 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -110,19 +110,6 @@
110;; 110;;
111;; ---------------------------------------- 111;; ----------------------------------------
112;; 112;;
113;; If you'd like to check out my complete configuration, you can download
114;; it from http://www.polito.it/~s64912/things.html, it's ~500k in size and
115;; contains my .cshrc, .emacs and my whole site-lisp subdirectory. (notice
116;; that this term.el may be newer/older than the one in there, please
117;; check!)
118;;
119;; This complete configuration contains, among other things, a complete
120;; rectangular marking solution (based on rect-mark.el and
121;; pc-bindings.el) and should be a good example of how extensively Emacs
122;; can be configured on a ppp-connected ws.
123;;
124;; ----------------------------------------
125;;
126;; TODO: 113;; TODO:
127;; 114;;
128;; - Add hooks to allow raw-mode keys to be configurable 115;; - Add hooks to allow raw-mode keys to be configurable
@@ -1445,7 +1432,7 @@ Using \"emacs\" loses, because bash disables editing if $TERM == emacs.")
1445:UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC\ 1432:UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC\
1446:kl=\\EOD:kd=\\EOB:kr=\\EOC:ku=\\EOA:kN=\\E[6~:kP=\\E[5~:@7=\\E[4~:kh=\\E[1~\ 1433:kl=\\EOD:kd=\\EOB:kr=\\EOC:ku=\\EOA:kN=\\E[6~:kP=\\E[5~:@7=\\E[4~:kh=\\E[1~\
1447:mk=\\E[8m:cb=\\E[1K:op=\\E[39;49m:Co#8:pa#64:AB=\\E[4%%dm:AF=\\E[3%%dm:cr=^M\ 1434:mk=\\E[8m:cb=\\E[1K:op=\\E[39;49m:Co#8:pa#64:AB=\\E[4%%dm:AF=\\E[3%%dm:cr=^M\
1448:bl=^G:do=^J:le=^H:ta=^I:se=\\E[27m:ue=\\E24m\ 1435:bl=^G:do=^J:le=^H:ta=^I:se=\\E[27m:ue=\\E[24m\
1449:kb=^?:kD=^[[3~:sc=\\E7:rc=\\E8:r1=\\Ec:" 1436:kb=^?:kD=^[[3~:sc=\\E7:rc=\\E8:r1=\\Ec:"
1450 ;; : -undefine ic 1437 ;; : -undefine ic
1451 ;; don't define :te=\\E[2J\\E[?47l\\E8:ti=\\E7\\E[?47h\ 1438 ;; don't define :te=\\E[2J\\E[?47l\\E8:ti=\\E7\\E[?47h\
@@ -2140,7 +2127,7 @@ The prompt skip is done by skipping text matching the regular expression
2140(defun term-read-noecho (prompt &optional stars) 2127(defun term-read-noecho (prompt &optional stars)
2141 "Read a single line of text from user without echoing, and return it. 2128 "Read a single line of text from user without echoing, and return it.
2142Prompt with argument PROMPT, a string. Optional argument STARS causes 2129Prompt with argument PROMPT, a string. Optional argument STARS causes
2143input to be echoed with '*' characters on the prompt line. Input ends with 2130input to be echoed with `*' characters on the prompt line. Input ends with
2144RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if 2131RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if
2145`inhibit-quit' is set because e.g. this function was called from a process 2132`inhibit-quit' is set because e.g. this function was called from a process
2146filter and C-g is pressed, this function returns nil rather than a string). 2133filter and C-g is pressed, this function returns nil rather than a string).