* lisp/emulation/edt-mapper.el: In batch mode, error rather than hang.
This commit is contained in:
parent
8582e4c4b9
commit
0da7ad96c4
2 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
2013-05-11 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* 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 <sdl.web@gmail.com>
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Add table
Reference in a new issue