[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/term.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/term.el |
Date: |
Sun, 03 Jul 2005 22:35:55 -0400 |
Index: emacs/lisp/term.el
diff -c emacs/lisp/term.el:1.72 emacs/lisp/term.el:1.73
*** emacs/lisp/term.el:1.72 Fri Jun 17 14:37:55 2005
--- emacs/lisp/term.el Mon Jul 4 02:35:55 2005
***************
*** 405,411 ****
(require 'ehelp)
(defgroup term nil
! "General command interpreter in a window"
:group 'processes
:group 'unix)
--- 405,411 ----
(require 'ehelp)
(defgroup term nil
! "General command interpreter in a window."
:group 'processes
:group 'unix)
***************
*** 1574,1580 ****
(sit-for 0)
(message "Hit space to flush")
(let ((ch (read-event)))
! (if (eq ch ?\ )
(set-window-configuration conf)
(setq unread-command-events (list ch)))))))
--- 1574,1580 ----
(sit-for 0)
(message "Hit space to flush")
(let ((ch (read-event)))
! (if (eq ch ?\s)
(set-window-configuration conf)
(setq unread-command-events (list ch)))))))
***************
*** 4045,4051 ****
(progn
(mouse-choose-completion first)
(set-window-configuration conf))
! (if (eq first ?\ )
(set-window-configuration conf)
(setq unread-command-events (listify-key-sequence key)))))))
--- 4045,4051 ----
(progn
(mouse-choose-completion first)
(set-window-configuration conf))
! (if (eq first ?\s)
(set-window-configuration conf)
(setq unread-command-events (listify-key-sequence key)))))))
- [Emacs-diffs] Changes to emacs/lisp/term.el,
Juanma Barranquero <=