diff options
| author | Stefan Monnier | 2018-01-15 13:42:51 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2018-01-15 13:42:51 -0500 |
| commit | 72ee93d68daea00e2ee69417afd4e31b3145a9fa (patch) | |
| tree | f485b3e50d189e10384903641accf0933102640a /doc/misc | |
| parent | 8e05cb61a247a9035c5bf33b55c933d48c964dbc (diff) | |
| download | emacs-72ee93d68daea00e2ee69417afd4e31b3145a9fa.tar.gz emacs-72ee93d68daea00e2ee69417afd4e31b3145a9fa.zip | |
* src/print.c (syms_of_print) <print_quoted>: Set default to true
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ede.texi | 6 | ||||
| -rw-r--r-- | doc/misc/efaq.texi | 4 | ||||
| -rw-r--r-- | doc/misc/org.texi | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi index fbe3ac6a10a..88dc9e922e5 100644 --- a/doc/misc/ede.texi +++ b/doc/misc/ede.texi | |||
| @@ -1824,7 +1824,7 @@ This class implements the @code{ede-cpp-root} project type. | |||
| 1824 | @table @code | 1824 | @table @code |
| 1825 | @item :include-path | 1825 | @item :include-path |
| 1826 | Type: @code{list} @* | 1826 | Type: @code{list} @* |
| 1827 | Default Value: @code{(quote ("/include" "../include/"))} | 1827 | Default Value: @code{("/include" "../include/")} |
| 1828 | 1828 | ||
| 1829 | The default locate function expands filenames within a project. | 1829 | The default locate function expands filenames within a project. |
| 1830 | If a header file (.h, .hh, etc.)@: name is expanded, and | 1830 | If a header file (.h, .hh, etc.)@: name is expanded, and |
| @@ -2262,14 +2262,14 @@ The variable GNUSTEP_INSTALLATION_DOMAIN is set at this value. | |||
| 2262 | 2262 | ||
| 2263 | @item :preamble | 2263 | @item :preamble |
| 2264 | Type: @code{(or null list)} @* | 2264 | Type: @code{(or null list)} @* |
| 2265 | Default Value: @code{(quote ("GNUmakefile.preamble"))} | 2265 | Default Value: @code{("GNUmakefile.preamble")} |
| 2266 | 2266 | ||
| 2267 | The auxiliary makefile for additional variables. | 2267 | The auxiliary makefile for additional variables. |
| 2268 | Included just before the specific target files. | 2268 | Included just before the specific target files. |
| 2269 | 2269 | ||
| 2270 | @item :postamble | 2270 | @item :postamble |
| 2271 | Type: @code{(or null list)} @* | 2271 | Type: @code{(or null list)} @* |
| 2272 | Default Value: @code{(quote ("GNUmakefile.postamble"))} | 2272 | Default Value: @code{("GNUmakefile.postamble")} |
| 2273 | 2273 | ||
| 2274 | The auxiliary makefile for additional rules. | 2274 | The auxiliary makefile for additional rules. |
| 2275 | Included just after the specific target files. | 2275 | Included just after the specific target files. |
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 8014c2b71f5..3e67438ab9d 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi | |||
| @@ -3652,7 +3652,7 @@ to bind the key is in the kill ring, and can be yanked into your | |||
| 3652 | command are required. For example, | 3652 | command are required. For example, |
| 3653 | 3653 | ||
| 3654 | @lisp | 3654 | @lisp |
| 3655 | (global-set-key (quote [f1]) (quote help-for-help)) | 3655 | (global-set-key [f1] 'help-for-help) |
| 3656 | @end lisp | 3656 | @end lisp |
| 3657 | 3657 | ||
| 3658 | @noindent | 3658 | @noindent |
| @@ -3663,7 +3663,7 @@ For example, in TeX mode, a local binding might be | |||
| 3663 | @lisp | 3663 | @lisp |
| 3664 | (add-hook 'tex-mode-hook | 3664 | (add-hook 'tex-mode-hook |
| 3665 | (lambda () | 3665 | (lambda () |
| 3666 | (local-set-key (quote [f1]) (quote help-for-help)))) | 3666 | (local-set-key [f1] 'help-for-help))) |
| 3667 | @end lisp | 3667 | @end lisp |
| 3668 | 3668 | ||
| 3669 | 3669 | ||
diff --git a/doc/misc/org.texi b/doc/misc/org.texi index a252db48184..f779417bd70 100644 --- a/doc/misc/org.texi +++ b/doc/misc/org.texi | |||
| @@ -18173,7 +18173,7 @@ Suggested Org crypt settings in Emacs init file: | |||
| 18173 | @lisp | 18173 | @lisp |
| 18174 | (require 'org-crypt) | 18174 | (require 'org-crypt) |
| 18175 | (org-crypt-use-before-save-magic) | 18175 | (org-crypt-use-before-save-magic) |
| 18176 | (setq org-tags-exclude-from-inheritance (quote ("crypt"))) | 18176 | (setq org-tags-exclude-from-inheritance '("crypt")) |
| 18177 | 18177 | ||
| 18178 | (setq org-crypt-key nil) | 18178 | (setq org-crypt-key nil) |
| 18179 | ;; GPG key to use for encryption | 18179 | ;; GPG key to use for encryption |