mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
* lisp/tar-mode.el (tar-header-block-summarize): Use it. (tar-grind-file-mode): Declare obsolete.
23 lines
293 B
Scheme
23 lines
293 B
Scheme
;; Testing sexp-comments
|
|
|
|
(define a #;(hello) there)
|
|
|
|
(define a #;1 there)
|
|
|
|
(define a #;"asdf" there)
|
|
|
|
(define a ;; #;(hello
|
|
there)
|
|
|
|
(define a #;(hello
|
|
there) 2)
|
|
|
|
(define a #;(hello
|
|
#;(world))
|
|
and)
|
|
there) 2)
|
|
|
|
(define a #;(hello
|
|
#;"asdf" (world
|
|
and)
|
|
there) 2)
|