aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2019-03-09 10:07:46 -0800
committerGlenn Morris2019-03-09 10:07:46 -0800
commit3b63afd73b541ea559aa58edc1901c8b30e2af40 (patch)
treea68afec4142bd100f3b6dfa3eb90aa2c0a71b34f /doc/misc
parente1819a254f28a7dcba3c395c345fe237a512e92e (diff)
parent0589de55c465627c16314519568f22daa62ff654 (diff)
downloademacs-3b63afd73b541ea559aa58edc1901c8b30e2af40.tar.gz
emacs-3b63afd73b541ea559aa58edc1901c8b30e2af40.zip
Merge from origin/emacs-26
0589de5 (origin/emacs-26) Fix markup of fake keys in the ELisp manual 82d4b98 Avoid errors in Auto Revert mode a3b1935 Mention empty strings in file name expansion, emacs lisp refe... a38da0d cc-mode.texi: Work around makeinfo alignment bug. Fix proble... 464ee80 Warn against recursive invocations of 'buffer-list-update-hoo... 60b5c10 Provide more details in doc-string of 'delete-windows-on' (Bu... f0be0f1 Improve documentation of 'delete-windows-on' f1bddc7 * lisp/frame.el (make-frame-command): Doc fix. (Bug#34715) 2848623 Avoid undefined behavior in gdb-mi.el dbf1837 * lisp/window.el (fit-frame-to-buffer): Make doc-string more ... 099ef44 Minor spelling and grammar fixes (bug#34756) 52fd400 Minor improvement of documentation of '(when CONDITION . SPEC)' f872b65 Improve documentation of 'auto-coding-functions' 04cad5e Fix visiting XML files with non-Unix EOL format a89fabe Update example major mode code in Elisp manual # Conflicts: # lisp/autorevert.el # lisp/window.el
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/cc-mode.texi28
-rw-r--r--doc/misc/ede.texi16
-rw-r--r--doc/misc/gnus-faq.texi2
-rw-r--r--doc/misc/gnus.texi2
4 files changed, 36 insertions, 12 deletions
diff --git a/doc/misc/cc-mode.texi b/doc/misc/cc-mode.texi
index 1a77a64e01c..0c77cc0ee61 100644
--- a/doc/misc/cc-mode.texi
+++ b/doc/misc/cc-mode.texi
@@ -148,7 +148,17 @@ CC Mode
148@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 148@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
149 149
150@comment Define an index for syntactic symbols. 150@comment Define an index for syntactic symbols.
151@c Version for Texinfo <= 4.x
152@ifclear txicommandconditionals
153@ifnottex @c In texi2dvi, the @defindex would create an empty cc-mode.ss
154 @c For Info, unlike tex, @syncodeindex needs a matching @defindex.
151@defindex ss 155@defindex ss
156@end ifnottex
157@end ifclear
158@c Version for Texinfo >= 5.x
159@ifset txicommandconditionals
160@defindex ss
161@end ifset
152 162
153@comment Combine key, syntactic symbol and concept indices into one. 163@comment Combine key, syntactic symbol and concept indices into one.
154@syncodeindex ss cp 164@syncodeindex ss cp
@@ -2282,6 +2292,8 @@ method, ``Top-level commands or the customization interface''.
2282 2292
2283If you make conflicting settings in several of these ways, the way 2293If you make conflicting settings in several of these ways, the way
2284that takes precedence is the one that appears latest in this list: 2294that takes precedence is the one that appears latest in this list:
2295@c Version of list for Texinfo <= 4.x
2296@ifclear txicommandconditionals
2285@itemize @w{} 2297@itemize @w{}
2286@item 2298@item
2287@table @asis 2299@table @asis
@@ -2292,6 +2304,18 @@ that takes precedence is the one that appears latest in this list:
2292@itemx File Local Variable setting 2304@itemx File Local Variable setting
2293@end table 2305@end table
2294@end itemize 2306@end itemize
2307@end ifclear
2308@c Version of list for Texinfo >= 5.x
2309@ifset txicommandconditionals
2310@itemize @asis
2311@item Style
2312@item File Style@footnote{In earlier versions of @ccmode{}, a File Style setting took precedence over any other setting apart from a File Local Variable setting.}
2313@item Top-level command or ``customization interface''
2314@item Hook
2315@item File Local Variable setting
2316@end itemize
2317@end ifset
2318
2295 2319
2296Here is a summary of the different ways of writing your configuration 2320Here is a summary of the different ways of writing your configuration
2297settings: 2321settings:
@@ -2548,7 +2572,7 @@ Basics}).
2548@item 2572@item
2549The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is 2573The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is
2550an association list with an element for each syntactic symbol. It's 2574an association list with an element for each syntactic symbol. It's
2551handled a little differently from the other style variables. It's 2575handled a little differently from the other style variables. Its
2552default global binding is the empty list @code{nil}, rather than 2576default global binding is the empty list @code{nil}, rather than
2553@code{set-from-style}. Before the style system is initialized, you 2577@code{set-from-style}. Before the style system is initialized, you
2554can add individual elements to @code{c-offsets-alist} by calling 2578can add individual elements to @code{c-offsets-alist} by calling
@@ -5286,7 +5310,7 @@ The simplest and most used kind of ``offset'' setting in
5286@defopt c-basic-offset 5310@defopt c-basic-offset
5287@vindex basic-offset @r{(c-)} 5311@vindex basic-offset @r{(c-)}
5288This style variable holds the basic offset between indentation levels. 5312This style variable holds the basic offset between indentation levels.
5289It's factory default is 4, but all the built-in styles set it 5313Its factory default is 4, but all the built-in styles set it
5290themselves, to some value between 2 (for @code{gnu} style) and 8 (for 5314themselves, to some value between 2 (for @code{gnu} style) and 8 (for
5291@code{bsd}, @code{linux}, and @code{python} styles). 5315@code{bsd}, @code{linux}, and @code{python} styles).
5292@end defopt 5316@end defopt
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi
index 6d5c1b93a94..7ab386c97a4 100644
--- a/doc/misc/ede.texi
+++ b/doc/misc/ede.texi
@@ -1038,7 +1038,7 @@ details on using @eieio{} to extending classes, and writing methods.
1038 1038
1039If you intend to extend @ede{}, it is most likely that a new target type is 1039If you intend to extend @ede{}, it is most likely that a new target type is
1040needed in one of the existing project types. The rest of this chapter 1040needed in one of the existing project types. The rest of this chapter
1041will discuss extending the @code{ede-project} class, and it's targets. 1041will discuss extending the @code{ede-project} class, and its targets.
1042See @file{project-am.el} for basic details on adding targets to it. 1042See @file{project-am.el} for basic details on adding targets to it.
1043 1043
1044For the @code{ede-project} type, the core target class is called 1044For the @code{ede-project} type, the core target class is called
@@ -1477,7 +1477,7 @@ Get the inode of the directory project @var{PROJ} is in.
1477@end deffn 1477@end deffn
1478 1478
1479@deffn Method ede-project-root :AFTER this 1479@deffn Method ede-project-root :AFTER this
1480If a project knows it's root, return it here. 1480If a project knows its root, return it here.
1481Allows for one-project-object-for-a-tree type systems. 1481Allows for one-project-object-for-a-tree type systems.
1482@end deffn 1482@end deffn
1483 1483
@@ -1486,7 +1486,7 @@ Find a subproject of @var{PROJ} that corresponds to @var{DIR}.
1486@end deffn 1486@end deffn
1487 1487
1488@deffn Method ede-project-root-directory :AFTER this &optional file 1488@deffn Method ede-project-root-directory :AFTER this &optional file
1489If a project knows it's root, return it here. 1489If a project knows its root, return it here.
1490Allows for one-project-object-for-a-tree type systems. 1490Allows for one-project-object-for-a-tree type systems.
1491Optional @var{FILE} is the file to test. It is ignored in preference 1491Optional @var{FILE} is the file to test. It is ignored in preference
1492of the anchor file for the project. 1492of the anchor file for the project.
@@ -2516,7 +2516,7 @@ In sources for @var{THIS}, change version numbers to @var{VERSION}.
2516@end deffn 2516@end deffn
2517 2517
2518@deffn Method project-delete-target :AFTER ot 2518@deffn Method project-delete-target :AFTER ot
2519Delete the current target @var{OT} from it's parent project. 2519Delete the current target @var{OT} from its parent project.
2520@end deffn 2520@end deffn
2521 2521
2522@deffn Method ede-target-sourcecode :AFTER this 2522@deffn Method ede-target-sourcecode :AFTER this
@@ -2715,7 +2715,7 @@ Converts all symbols into the objects to be used.
2715@end deffn 2715@end deffn
2716 2716
2717@deffn Method project-delete-target :AFTER this 2717@deffn Method project-delete-target :AFTER this
2718Delete the current target @var{THIS} from it's parent project. 2718Delete the current target @var{THIS} from its parent project.
2719@end deffn 2719@end deffn
2720 2720
2721@deffn Method ede-proj-makefile-target-name :AFTER this 2721@deffn Method ede-proj-makefile-target-name :AFTER this
@@ -4013,7 +4013,7 @@ Type: @code{list}
4013 4013
4014The commands used to execute this compiler. 4014The commands used to execute this compiler.
4015The object which uses this compiler will place these commands after 4015The object which uses this compiler will place these commands after
4016it's rule definition. 4016its rule definition.
4017 4017
4018@item :autoconf 4018@item :autoconf
4019Type: @code{list} @* 4019Type: @code{list} @*
@@ -4125,7 +4125,7 @@ Type: @code{list}
4125 4125
4126The commands used to execute this compiler. 4126The commands used to execute this compiler.
4127The object which uses this compiler will place these commands after 4127The object which uses this compiler will place these commands after
4128it's rule definition. 4128its rule definition.
4129 4129
4130@item :objectextention 4130@item :objectextention
4131Type: @code{string} 4131Type: @code{string}
@@ -4265,7 +4265,7 @@ Type: @code{list}
4265 4265
4266The commands used to execute this compiler. 4266The commands used to execute this compiler.
4267The object which uses this compiler will place these commands after 4267The object which uses this compiler will place these commands after
4268it's rule definition. 4268its rule definition.
4269 4269
4270@item :objectextention 4270@item :objectextention
4271Type: @code{string} 4271Type: @code{string}
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi
index e8ec5020df2..075f5218414 100644
--- a/doc/misc/gnus-faq.texi
+++ b/doc/misc/gnus-faq.texi
@@ -284,7 +284,7 @@ what's this?
284@subsubheading Answer 284@subsubheading Answer
285 285
286You get the message described in the q/a pair above while 286You get the message described in the q/a pair above while
287starting Gnus, right? It's an other symptom for the same 287starting Gnus, right? It's another symptom for the same
288problem, so read the answer above. 288problem, so read the answer above.
289 289
290@node FAQ 2-3 290@node FAQ 2-3
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 272c8356c20..b9c91a02a3a 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -9416,7 +9416,7 @@ function must return @code{mid}, @code{mail}, @code{invalid} or
9416@item gnus-button-mid-or-mail-heuristic 9416@item gnus-button-mid-or-mail-heuristic
9417@findex gnus-button-mid-or-mail-heuristic 9417@findex gnus-button-mid-or-mail-heuristic
9418Function that guesses whether its argument is a message ID or a mail 9418Function that guesses whether its argument is a message ID or a mail
9419address. Returns @code{mid} if it's a message IDs, @code{mail} if 9419address. Returns @code{mid} if it's a message ID, @code{mail} if
9420it's a mail address, @code{ask} if unsure and @code{invalid} if the 9420it's a mail address, @code{ask} if unsure and @code{invalid} if the
9421string is invalid. 9421string is invalid.
9422 9422