zeroein.el works with --eval options now

This commit is contained in:
Takafumi Arakaki 2012-12-06 20:14:24 +01:00
parent a384ba15de
commit a3a0148375

View file

@ -109,10 +109,12 @@
;;; Finally, open notebook list ;;; Finally, open notebook list
(require 'ein-dev) (if noninteractive
(ein:dev-print-sys-info) (progn
;; When called in batch mode, print system info.
(unless noninteractive (require 'ein-dev)
(call-interactively #'ein:notebooklist-open)) (ein:dev-print-sys-info))
;; To make EIN configurable by --eval, use idle timer:
(run-with-idle-timer 0 nil 'call-interactively 'ein:notebooklist-open))
;;; zeroein.el ends here ;;; zeroein.el ends here