1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00
emacs/test/manual/indent/scheme.scm
Stefan Monnier cf774fb8cc * lisp/files.el (file-modes-number-to-symbolic): Add filetype arg.
* lisp/tar-mode.el (tar-header-block-summarize): Use it.
(tar-grind-file-mode): Declare obsolete.
2021-04-12 12:46:47 -04:00

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)