Mercurial > hg > xemacs-beta
comparison lisp/eterm/term.el @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | ec9a17fef872 |
children | c0c698873ce1 |
comparison
equal
deleted
inserted
replaced
69:804d1389bcd6 | 70:131b0175ea99 |
---|---|
2966 ;;; | 2966 ;;; |
2967 ;;; Commands like this are fine things to put in load hooks if you | 2967 ;;; Commands like this are fine things to put in load hooks if you |
2968 ;;; want them present in specific modes. | 2968 ;;; want them present in specific modes. |
2969 | 2969 |
2970 (defvar term-completion-autolist nil | 2970 (defvar term-completion-autolist nil |
2971 "*If non-nil, automatically list possibilities on partial completion. | 2971 "*If non-nil, automatically list possiblities on partial completion. |
2972 This mirrors the optional behavior of tcsh.") | 2972 This mirrors the optional behavior of tcsh.") |
2973 | 2973 |
2974 (defvar term-completion-addsuffix t | 2974 (defvar term-completion-addsuffix t |
2975 "*If non-nil, add a `/' to completed directories, ` ' to file names. | 2975 "*If non-nil, add a `/' to completed directories, ` ' to file names. |
2976 This mirrors the optional behavior of tcsh.") | 2976 This mirrors the optional behavior of tcsh.") |
3195 (progn | 3195 (progn |
3196 (mouse-choose-completion first) | 3196 (mouse-choose-completion first) |
3197 (set-window-configuration conf)) | 3197 (set-window-configuration conf)) |
3198 (if (eq first ?\ ) | 3198 (if (eq first ?\ ) |
3199 (set-window-configuration conf) | 3199 (set-window-configuration conf) |
3200 (setq unread-command-events (append key nil))))))) | 3200 (setq unread-command-events (listify-key-sequence key))))))) |
3201 | 3201 |
3202 ;;; Converting process modes to use term mode | 3202 ;;; Converting process modes to use term mode |
3203 ;;; =========================================================================== | 3203 ;;; =========================================================================== |
3204 ;;; Renaming variables | 3204 ;;; Renaming variables |
3205 ;;; Most of the work is renaming variables and functions. These are the common | 3205 ;;; Most of the work is renaming variables and functions. These are the common |