diff options
| author | Stefan Monnier | 2021-04-12 12:46:47 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2021-04-12 12:46:47 -0400 |
| commit | cf774fb8cc0404e00e284a75862d95b5cbc1e94d (patch) | |
| tree | 355c0e0ac5f8f68fe595845d1b9649a1f9d43e1b /test | |
| parent | 9a6523dfd68a17ebf7049d2aae3fd02386d7cb04 (diff) | |
| download | emacs-cf774fb8cc0404e00e284a75862d95b5cbc1e94d.tar.gz 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')
| -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 @@ | |||
| 1 | ;; Testing sexp-comments | ||
| 2 | |||
| 3 | (define a #;(hello) there) | ||
| 4 | |||
| 5 | (define a #;1 there) | ||
| 6 | |||
| 7 | (define a #;"asdf" there) | ||
| 8 | |||
| 9 | (define a ;; #;(hello | ||
| 10 | there) | ||
| 11 | |||
| 12 | (define a #;(hello | ||
| 13 | there) 2) | ||
| 14 | |||
| 15 | (define a #;(hello | ||
| 16 | #;(world)) | ||
| 17 | and) | ||
| 18 | there) 2) | ||
| 19 | |||
| 20 | (define a #;(hello | ||
| 21 | #;"asdf" (world | ||
| 22 | and) | ||
| 23 | there) 2) | ||