1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

* lisp/ielm.el (inferior-emacs-lisp-mode): Instead of

`comment-use-global-state', set `comment-use-syntax'.
This commit is contained in:
Dmitry Gutov 2014-02-10 04:53:15 +02:00
parent 63d93efda6
commit a11463de21
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
* ielm.el (inferior-emacs-lisp-mode): Instead of
`comment-use-global-state', set `comment-use-syntax'.
2014-02-10 Glenn Morris <rgm@gnu.org>
* emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.

View File

@ -549,7 +549,7 @@ Customized bindings may be defined in `ielm-map', which currently contains:
(setq mode-line-process '(":%s on " (:eval (buffer-name ielm-working-buffer))))
;; Useful for `hs-minor-mode'.
(setq-local comment-start ";")
(setq-local comment-use-global-state t)
(setq-local comment-use-syntax t)
(set (make-local-variable 'indent-line-function) 'ielm-indent-line)
(set (make-local-variable 'ielm-working-buffer) (current-buffer))