Skip to content

Commit 4b2751c

Browse files
committed
code: fix Emacs 26.x
1 parent 77c4e2f commit 4b2751c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eask-mode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
(font-lock-add-keywords 'eask-mode eask-mode-font-lock-keywords)
6767
;; FIXME: toggling comments only applies to the current line,
6868
;; breaking multiline sexps.
69-
(setq-local comment-start ";; "
70-
comment-end ""
71-
indent-line-function #'lisp-indent-line))
69+
(setq-local comment-start ";; ")
70+
(setq-local comment-end "")
71+
(setq-local indent-line-function #'lisp-indent-line))
7272

7373
;;;###autoload
7474
(add-to-list 'auto-mode-alist '("/Eask\\'" . eask-mode))

0 commit comments

Comments
 (0)