aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorPaul Eggert2015-05-21 10:04:45 -0700
committerPaul Eggert2015-05-21 10:06:44 -0700
commit96794d2f97cd064e4c2bf4f71459b42558cc8c79 (patch)
treeae2d3836af726636586f4ed21dbdfcb079715777 /src/buffer.c
parentfc071bf7c6a300f52142b92cf99c5a0e63b3e235 (diff)
downloademacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.tar.gz
emacs-96794d2f97cd064e4c2bf4f71459b42558cc8c79.zip
Don't quote nil and t in doc strings
This is as per "Tips for Documentation Strings" in the elisp manual. For consistency, do the same in diagnostics and comments.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 148d077ec21..c78d08c53d2 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -6106,7 +6106,7 @@ An entry of the form POSITION indicates that point was at the buffer
6106location given by the integer. Undoing an entry of this form places 6106location given by the integer. Undoing an entry of this form places
6107point at POSITION. 6107point at POSITION.
6108 6108
6109Entries with value `nil' mark undo boundaries. The undo command treats 6109Entries with value nil mark undo boundaries. The undo command treats
6110the changes between two undo boundaries as a single step to be undone. 6110the changes between two undo boundaries as a single step to be undone.
6111 6111
6112If the value of the variable is t, undo information is not recorded. */); 6112If the value of the variable is t, undo information is not recorded. */);