aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2013-06-26 00:16:20 -0700
committerGlenn Morris2013-06-26 00:16:20 -0700
commit253e30aa895331c42697a6e995f8819385828a6a (patch)
tree45e6cebc496528ef421697bf31b4c348a75a7041 /doc
parent9dc3215fab2989509ce14e6eb7c1d616d2c7c5b3 (diff)
downloademacs-253e30aa895331c42697a6e995f8819385828a6a.tar.gz
emacs-253e30aa895331c42697a6e995f8819385828a6a.zip
Manual fixes re describe-syntax
* doc/emacs/help.texi (Misc Help): Index describe-syntax. * doc/lispref/syntax.texi (Syntax Table Functions): Mention describe-syntax.
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/help.texi2
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/syntax.texi5
4 files changed, 15 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 9a2f5d98e47..072a13c0904 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12013-06-26 Glenn Morris <rgm@gnu.org>
2
3 * help.texi (Misc Help): Index describe-syntax.
4
12013-05-23 Glenn Morris <rgm@gnu.org> 52013-05-23 Glenn Morris <rgm@gnu.org>
2 6
3 * programs.texi (Semantic): Fix typo. 7 * programs.texi (Semantic): Fix typo.
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi
index 0a0a3865d2d..0f7e910ec17 100644
--- a/doc/emacs/help.texi
+++ b/doc/emacs/help.texi
@@ -530,6 +530,8 @@ describes the commands and features that are changed in this mode.
530 530
531@kindex C-h b 531@kindex C-h b
532@findex describe-bindings 532@findex describe-bindings
533@kindex C-h s
534@findex describe-syntax
533 @kbd{C-h b} (@code{describe-bindings}) and @kbd{C-h s} 535 @kbd{C-h b} (@code{describe-bindings}) and @kbd{C-h s}
534(@code{describe-syntax}) show other information about the current 536(@code{describe-syntax}) show other information about the current
535environment within Emacs. @kbd{C-h b} displays a list of all the key 537environment within Emacs. @kbd{C-h b} displays a list of all the key
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b851b869ed4..440e5dc8239 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-06-26 Glenn Morris <rgm@gnu.org>
2
3 * syntax.texi (Syntax Table Functions): Mention describe-syntax.
4
12013-06-19 Glenn Morris <rgm@gnu.org> 52013-06-19 Glenn Morris <rgm@gnu.org>
2 6
3 * loading.texi (Autoload): Fix typo. 7 * loading.texi (Autoload): Fix typo.
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi
index dfa121103bc..6bbd7a3a7b7 100644
--- a/doc/lispref/syntax.texi
+++ b/doc/lispref/syntax.texi
@@ -506,6 +506,11 @@ This function returns the current syntax table, which is the table for
506the current buffer. 506the current buffer.
507@end defun 507@end defun
508 508
509@deffn Command describe-syntax &optional buffer
510This command displays the contents of the syntax table of
511@var{buffer} (by default, the current buffer) in a help buffer.
512@end deffn
513
509@defmac with-syntax-table table body@dots{} 514@defmac with-syntax-table table body@dots{}
510This macro executes @var{body} using @var{table} as the current syntax 515This macro executes @var{body} using @var{table} as the current syntax
511table. It returns the value of the last form in @var{body}, after 516table. It returns the value of the last form in @var{body}, after