aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorStefan Monnier2018-01-15 13:42:51 -0500
committerStefan Monnier2018-01-15 13:42:51 -0500
commit72ee93d68daea00e2ee69417afd4e31b3145a9fa (patch)
treef485b3e50d189e10384903641accf0933102640a /doc/misc
parent8e05cb61a247a9035c5bf33b55c933d48c964dbc (diff)
downloademacs-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.texi6
-rw-r--r--doc/misc/efaq.texi4
-rw-r--r--doc/misc/org.texi2
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
1826Type: @code{list} @* 1826Type: @code{list} @*
1827Default Value: @code{(quote ("/include" "../include/"))} 1827Default Value: @code{("/include" "../include/")}
1828 1828
1829The default locate function expands filenames within a project. 1829The default locate function expands filenames within a project.
1830If a header file (.h, .hh, etc.)@: name is expanded, and 1830If 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
2264Type: @code{(or null list)} @* 2264Type: @code{(or null list)} @*
2265Default Value: @code{(quote ("GNUmakefile.preamble"))} 2265Default Value: @code{("GNUmakefile.preamble")}
2266 2266
2267The auxiliary makefile for additional variables. 2267The auxiliary makefile for additional variables.
2268Included just before the specific target files. 2268Included just before the specific target files.
2269 2269
2270@item :postamble 2270@item :postamble
2271Type: @code{(or null list)} @* 2271Type: @code{(or null list)} @*
2272Default Value: @code{(quote ("GNUmakefile.postamble"))} 2272Default Value: @code{("GNUmakefile.postamble")}
2273 2273
2274The auxiliary makefile for additional rules. 2274The auxiliary makefile for additional rules.
2275Included just after the specific target files. 2275Included 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
3652command are required. For example, 3652command 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