help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Emacs Lisp comments, Scheme comments, why the limitations


From: chuntaro
Subject: Re: Emacs Lisp comments, Scheme comments, why the limitations
Date: Sat, 8 Feb 2020 15:37:41 +0900
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.4.2

Hello.

You can do the following tricks;)
Unfortunately, it is not a formal feature.

^_ is entered as C-q C-_.

--- test.el ---
;;; -*- lexical-binding: t; -*-

(print 1)
#@
(print 2)
(print 3)
^_
(print 4)
---------------

$ emacs --batch -l test.el

1

4

$



reply via email to

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