diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-04-12 12:46:47 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-04-12 12:46:47 -0400 |
commit | cf774fb8cc0404e00e284a75862d95b5cbc1e94d (patch) | |
tree | 355c0e0ac5f8f68fe595845d1b9649a1f9d43e1b /test/manual/indent | |
parent | 9a6523dfd68a17ebf7049d2aae3fd02386d7cb04 (diff) | |
download | emacs-cf774fb8cc0404e00e284a75862d95b5cbc1e94d.tar.gz emacs-cf774fb8cc0404e00e284a75862d95b5cbc1e94d.tar.bz2 emacs-cf774fb8cc0404e00e284a75862d95b5cbc1e94d.zip |
* 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.
Diffstat (limited to 'test/manual/indent')
-rw-r--r-- | test/manual/indent/scheme.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/manual/indent/scheme.scm b/test/manual/indent/scheme.scm new file mode 100644 index 00000000000..9053a8743e4 --- /dev/null +++ b/test/manual/indent/scheme.scm @@ -0,0 +1,23 @@ +;; 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) |