aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-11-17 01:52:48 +0000
committerJuanma Barranquero2009-11-17 01:52:48 +0000
commitbe479117b198f536783a994dd5cd27d8ad8be5dd (patch)
treeda5bda5c6536d7c512dfe863c7e907d9bb5caec8
parent17291a1fc4baefa956b9ca746f9492c99a21f4f1 (diff)
downloademacs-be479117b198f536783a994dd5cd27d8ad8be5dd.tar.gz
emacs-be479117b198f536783a994dd5cd27d8ad8be5dd.zip
* semantic.texi (Semantic Internals, Glossary):
* sem-user.texi (Semantic mode, Include paths, Idle Scheduler) (Semanticdb search debugging commands): Fix typos.
-rw-r--r--doc/misc/ChangeLog8
-rw-r--r--doc/misc/sem-user.texi18
-rw-r--r--doc/misc/semantic.texi6
3 files changed, 19 insertions, 13 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index d5b3e2947af..f95f251d08e 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,6 +1,12 @@
12009-11-17 Juanma Barranquero <lekktu@gmail.com>
2
3 * semantic.texi (Semantic Internals, Glossary):
4 * sem-user.texi (Semantic mode, Include paths, Idle Scheduler)
5 (Semanticdb search debugging commands): Fix typos.
6
12009-11-16 Jay Belanger <jay.p.belanger@gmail.com> 72009-11-16 Jay Belanger <jay.p.belanger@gmail.com>
2 8
3 * calc.texi (Radix modes): Mention twos-complement notation. 9 * calc.texi (Radix modes): Mention twos-complement notation.
4 10
52009-11-16 Juanma Barranquero <lekktu@gmail.com> 112009-11-16 Juanma Barranquero <lekktu@gmail.com>
6 12
diff --git a/doc/misc/sem-user.texi b/doc/misc/sem-user.texi
index e8d700cf43d..8b06e03b05c 100644
--- a/doc/misc/sem-user.texi
+++ b/doc/misc/sem-user.texi
@@ -46,14 +46,14 @@ available for navigating, querying, and editing source code.
46installs a @samp{Development} menu on the menu-bar, with many of these 46installs a @samp{Development} menu on the menu-bar, with many of these
47commands. 47commands.
48 48
49In addition, enabling Semantic mode turns on certain auxilliary global 49In addition, enabling Semantic mode turns on certain auxiliary global
50minor modes, as specified by the variable 50minor modes, as specified by the variable
51@code{semantic-default-submodes}. The default auxilliary modes are 51@code{semantic-default-submodes}. The default auxiliary modes are
52SemanticDB mode (@pxref{SemanticDB}) and Global Semantic Idle 52SemanticDB mode (@pxref{SemanticDB}) and Global Semantic Idle
53Scheduler mode. You can also toggle the auxilliary minor modes 53Scheduler mode. You can also toggle the auxiliary minor modes
54separately, using their mode functions (e.g. @kbd{M-x 54separately, using their mode functions (e.g. @kbd{M-x
55semanticdb-minor-mode}), or via the @samp{Development} menu. These 55semanticdb-minor-mode}), or via the @samp{Development} menu. These
56auxilliary minor modes are described in the following sections. 56auxiliary minor modes are described in the following sections.
57 57
58@defvar semantic-new-buffer-setup-functions 58@defvar semantic-new-buffer-setup-functions
59The value of this variable is an alist of functions to call for 59The value of this variable is an alist of functions to call for
@@ -72,7 +72,7 @@ you can remove modes from this list if you don't want to use
72 72
73@defvar semantic-default-submodes 73@defvar semantic-default-submodes
74The value of this variable is a list of symbols, specifying the 74The value of this variable is a list of symbols, specifying the
75auxilliary minor modes to enable when enabling Semantic mode. The 75auxiliary minor modes to enable when enabling Semantic mode. The
76valid mode symbols are: 76valid mode symbols are:
77 77
78@itemize 78@itemize
@@ -372,7 +372,7 @@ the system include path for the current major mode (or @var{mode}).
372@anchor{semantic-customize-system-include-path} 372@anchor{semantic-customize-system-include-path}
373@deffn Command semantic-customize-system-include-path &optional mode 373@deffn Command semantic-customize-system-include-path &optional mode
374Customize the system include path for the current major mode (or 374Customize the system include path for the current major mode (or
375@code{mode}). 375@var{mode}).
376@end deffn 376@end deffn
377 377
378@anchor{semanticdb-implied-include-tags} 378@anchor{semanticdb-implied-include-tags}
@@ -457,7 +457,7 @@ encountered, but could not find on disk using
457Once you have used the below functions to debug the problem, you may 457Once you have used the below functions to debug the problem, you may
458need to reconfigure how @semantic{} finds include files. 458need to reconfigure how @semantic{} finds include files.
459See @ref{Semanticdb Search Configuration}. If the search config is 459See @ref{Semanticdb Search Configuration}. If the search config is
460ok, you may need to configure the search throttle. See @ref{Search Throttle}. 460ok, you may need to configure the search throttle. See @ref{Search Throttle}.
461 461
462@deffn Command semanticdb-dump-all-table-summary 462@deffn Command semanticdb-dump-all-table-summary
463@anchor{semanticdb-dump-all-table-summary} 463@anchor{semanticdb-dump-all-table-summary}
@@ -582,9 +582,9 @@ Application Developers Guide
582@menu 582@menu
583* Reparsing Options:: Reparsing the current buffer in idle time 583* Reparsing Options:: Reparsing the current buffer in idle time
584* Idle Working Options:: Options for extra work done at idle time 584* Idle Working Options:: Options for extra work done at idle time
585* Debugging Idle Time Issues:: How to produce good bug reports. 585* Debugging Idle Time Issues:: How to produce good bug reports
586* Idle Summary Mode:: Display prototype of symbol under cursor 586* Idle Summary Mode:: Display prototype of symbol under cursor
587* Idle Completions Mode:: Smart completion pop-up help. 587* Idle Completions Mode:: Smart completion pop-up help
588@end menu 588@end menu
589 589
590@node Reparsing Options 590@node Reparsing Options
diff --git a/doc/misc/semantic.texi b/doc/misc/semantic.texi
index adfecde2568..064f1a6e3ae 100644
--- a/doc/misc/semantic.texi
+++ b/doc/misc/semantic.texi
@@ -242,8 +242,8 @@ more about how @semantic{} works.
242* Tag handling :: Code used for manipulating tags 242* Tag handling :: Code used for manipulating tags
243* Semanticdb internals :: Code used in the semantic database 243* Semanticdb internals :: Code used in the semantic database
244* Analyzer :: Code used in the code analyzer 244* Analyzer :: Code used in the code analyzer
245* Tools :: Code used in user tools. 245* Tools :: Code used in user tools
246* Tests :: Code used for testing. 246* Tests :: Code used for testing
247@end menu 247@end menu
248 248
249@node Parser code 249@node Parser code
@@ -566,7 +566,7 @@ keywords and punctuation, and strip whitespaces and comments.
566 566
567@item nonterminal 567@item nonterminal
568A nonterminal symbol or simply a nonterminal stands for a class of 568A nonterminal symbol or simply a nonterminal stands for a class of
569syntactically equivalent groupings. A nonterminal symbol name is used 569syntactically equivalent groupings. A nonterminal symbol name is used
570in writing grammar rules. 570in writing grammar rules.
571 571
572@item overloadable 572@item overloadable