emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112544: * lisp/emulation/edt-mapper.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112544: * lisp/emulation/edt-mapper.el: In batch mode, error rather than hang.
Date: Fri, 10 May 2013 19:17:45 -0700
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112544
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2013-05-10 19:17:45 -0700
message:
  * lisp/emulation/edt-mapper.el: In batch mode, error rather than hang.
modified:
  lisp/ChangeLog
  lisp/emulation/edt-mapper.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-05-11 02:15:46 +0000
+++ b/lisp/ChangeLog    2013-05-11 02:17:45 +0000
@@ -1,5 +1,7 @@
 2013-05-11  Glenn Morris  <address@hidden>
 
+       * emulation/edt-mapper.el: In batch mode, error rather than hang.
+
        * term.el (term-set-escape-char): Make it idempotent.
 
 2013-05-10  Leo Liu  <address@hidden>

=== modified file 'lisp/emulation/edt-mapper.el'
--- a/lisp/emulation/edt-mapper.el      2013-01-01 09:11:05 +0000
+++ b/lisp/emulation/edt-mapper.el      2013-05-11 02:17:45 +0000
@@ -96,6 +96,10 @@
 
 ;;; Code:
 
+;; Otherwise it just hangs.  This seems preferable.
+(if noninteractive
+    (error "edt-mapper cannot be loaded in batch mode"))
+
 ;;;
 ;;;  Decide Emacs Variant, GNU Emacs or XEmacs (aka Lucid Emacs).
 ;;;  Determine Window System, and X Server Vendor (if appropriate).


reply via email to

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