emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112826: * NEWS: Document eshell visu


From: Tassilo Horn
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112826: * NEWS: Document eshell visual subcommands and options.
Date: Mon, 03 Jun 2013 08:34:21 +0200
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112826
committer: Tassilo Horn <address@hidden>
branch nick: trunk
timestamp: Mon 2013-06-03 08:34:21 +0200
message:
  * NEWS: Document eshell visual subcommands and options.
  
  * eshell/em-term.el (eshell-term-initialize): Use
  `cl-intersection' rather than `intersection'.
modified:
  etc/ChangeLog
  etc/NEWS
  lisp/ChangeLog
  lisp/eshell/em-term.el
=== modified file 'etc/ChangeLog'
--- a/etc/ChangeLog     2013-06-02 16:39:32 +0000
+++ b/etc/ChangeLog     2013-06-03 06:34:21 +0000
@@ -1,3 +1,7 @@
+2013-06-03  Tassilo Horn  <address@hidden>
+
+       * NEWS: Document eshell visual subcommands and options.
+
 2013-06-02  Eric Ludlam <address@hidden>
 
        * srecode/c.srt (header_guard): Add :c parameter so it works

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-06-01 12:35:14 +0000
+++ b/etc/NEWS  2013-06-03 06:34:21 +0000
@@ -129,6 +129,18 @@
 
 * Changes in Specialized Modes and Packages in Emacs 24.4
 
+** `eshell' now supports visual subcommands and options
+Eshell has been able to handle "visual" commands (interactive,
+non-line oriented commands such as top that require display
+capabilities not provided by eshell) by running them in an Emacs
+terminal emulator.  See `eshell-visual-commands'.
+
+This feature has been extended to subcommands and options that make a
+usually line-oriented command a visual command.  Typical examples are
+"git log" and "git <command> --help" which display their output in a
+pager by default.  See `eshell-visual-subcommands' and
+`eshell-visual-options'.
+
 ** `remember' can now store notes in separates files
 You can use the new function `remember-store-in-files' within the
 `remember-handler-functions' option.

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-06-02 16:39:32 +0000
+++ b/lisp/ChangeLog    2013-06-03 06:34:21 +0000
@@ -1,3 +1,8 @@
+2013-06-03  Tassilo Horn  <address@hidden>
+
+       * eshell/em-term.el (eshell-term-initialize): Use
+       `cl-intersection' rather than `intersection'.
+
 2013-06-02  Eric Ludlam <address@hidden>
 
        * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)

=== modified file 'lisp/eshell/em-term.el'
--- a/lisp/eshell/em-term.el    2013-06-02 18:26:38 +0000
+++ b/lisp/eshell/em-term.el    2013-06-03 06:34:21 +0000
@@ -137,9 +137,9 @@
                         (or (member command eshell-visual-commands)
                             (member (car args)
                                     (cdr (assoc command 
eshell-visual-subcommands)))
-                            (intersection args
-                                          (cdr (assoc command 
eshell-visual-options))
-                                          :test 'string=)))))
+                            (cl-intersection args
+                                             (cdr (assoc command 
eshell-visual-options))
+                                             :test 'string=)))))
                    'eshell-exec-visual)
              eshell-interpreter-alist)))
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]