aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2017-12-12 19:43:33 -0800
committerGlenn Morris2017-12-12 19:43:33 -0800
commit0beba8d16419ac592dd3dd7af7c177d80d490c4d (patch)
treed515a266d3593f934abfe43b82fd4703816b69ac /doc
parent92ca51cc5e9d30818f5abf60a5a13f08f2ea7e96 (diff)
parentb0369d0536cd510e8b7120ccf04ee98c4e323b59 (diff)
downloademacs-0beba8d16419ac592dd3dd7af7c177d80d490c4d.tar.gz
emacs-0beba8d16419ac592dd3dd7af7c177d80d490c4d.zip
Merge from origin/emacs-26
b0369d0536 Import the latest IVD_Sequences.txt cd53b6399b Fix dired-do-compress when tar doesn't default to stdin (B... 51911dae14 Suppress warnings during elisp completion macroexpansion a36a090a95 * lisp/progmodes/verilog-mode.el (verilog-mode): Fix typo ... 6a6e8e6e8d Make tramp-interrupt-process more robust 5bcd468a9e Make quail-input-method work when inhibit-read-only is non... 87baf1242e Fix 'fontset-name-p' d23158777d Fix fontset documentation inconsistencies for bug#29630 a829cb8c8b Remove sentence from child frames section in Elisp manual ad491c80e4 Avoid crashes in 'font-at' after 'set-fontset-font' c73d2cdfd7 * lisp/files-x.el (connection-local-set-profile-variables)... cefca2b8ac Add /etc/ssl/cert.pem to gnutls-trustfiles for macOS 122e7264b8 Fix tool-tip display when display margins are non-zero by ... e1cc2037a9 Handle hash tables and vectors when reading/writing EIEIO ... cda219c3df Improve interactive debugging commands in xdisp.c 1056b3cbcd Fix calculation of continuation_pixel_width in display engine 90e20804f5 Improve documentation of 'save-abbrevs'. 14f0230a48 Improve documentation of Dired 161b0e5493 * lisp/bookmark.el (bookmark-alist): Doc fix. (Bug#29551)
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/abbrevs.texi3
-rw-r--r--doc/emacs/dired.texi5
-rw-r--r--doc/lispref/display.texi11
-rw-r--r--doc/lispref/frames.texi3
4 files changed, 12 insertions, 10 deletions
diff --git a/doc/emacs/abbrevs.texi b/doc/emacs/abbrevs.texi
index 5f400a2399a..4e2e92c776b 100644
--- a/doc/emacs/abbrevs.texi
+++ b/doc/emacs/abbrevs.texi
@@ -315,7 +315,8 @@ batch mode. @xref{Initial Options}, for a description of batch mode.)
315any of them, whenever it offers to save all files (for @kbd{C-x s} or 315any of them, whenever it offers to save all files (for @kbd{C-x s} or
316@kbd{C-x C-c}). It saves them in the file specified by 316@kbd{C-x C-c}). It saves them in the file specified by
317@code{abbrev-file-name}. This feature can be inhibited by setting the 317@code{abbrev-file-name}. This feature can be inhibited by setting the
318variable @code{save-abbrevs} to @code{nil}. 318variable @code{save-abbrevs} to @code{nil}; setting it to
319@code{silently} will save the abbrevs automatically without asking.
319 320
320@findex insert-abbrevs 321@findex insert-abbrevs
321@findex define-abbrevs 322@findex define-abbrevs
diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi
index 9348ef5042d..6a83f42b82e 100644
--- a/doc/emacs/dired.texi
+++ b/doc/emacs/dired.texi
@@ -14,8 +14,9 @@ optionally some of its subdirectories as well. You can use the normal
14Emacs commands to move around in this buffer, and special Dired 14Emacs commands to move around in this buffer, and special Dired
15commands to operate on the listed files. 15commands to operate on the listed files.
16 16
17 The Dired buffer is read-only, and inserting text in it is not 17 The Dired buffer is normally read-only, and inserting text in it is
18allowed. Ordinary printing characters such as @kbd{d} and @kbd{x} are 18not allowed (however, the Wdired mode allows that, @pxref{Wdired}).
19Ordinary printing characters such as @kbd{d} and @kbd{x} are
19redefined for special Dired commands. Some Dired commands @dfn{mark} 20redefined for special Dired commands. Some Dired commands @dfn{mark}
20or @dfn{flag} the @dfn{current file} (that is, the file on the current 21or @dfn{flag} the @dfn{current file} (that is, the file on the current
21line); other commands operate on the marked files or on the flagged 22line); other commands operate on the marked files or on the flagged
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index a505639f514..7af8d9efb7c 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -2241,10 +2241,10 @@ attribute is ignored.
2241 2241
2242@table @code 2242@table @code
2243@item :family 2243@item :family
2244Font family or fontset (a string). @xref{Fonts,,, emacs, The GNU 2244Font family name (a string). @xref{Fonts,,, emacs, The GNU
2245Emacs Manual}, for more information about font families. The function 2245Emacs Manual}, for more information about font families. The function
2246@code{font-family-list} (see below) returns a list of available family 2246@code{font-family-list} (see below) returns a list of available family
2247names. @xref{Fontsets}, for information about fontsets. 2247names.
2248 2248
2249@item :foundry 2249@item :foundry
2250The name of the @dfn{font foundry} for the font family specified by 2250The name of the @dfn{font foundry} for the font family specified by
@@ -2404,9 +2404,10 @@ Normally you do not need to set the stipple attribute, because it is
2404used automatically to handle certain shades of gray. 2404used automatically to handle certain shades of gray.
2405 2405
2406@item :font 2406@item :font
2407The font used to display the face. Its value should be a font object. 2407The font used to display the face. Its value should be a font object
2408@xref{Low-Level Font}, for information about font objects, font specs, 2408or a fontset. @xref{Low-Level Font}, for information about font
2409and font entities. 2409objects, font specs, and font entities. @xref{Fontsets}, for
2410information about fontsets.
2410 2411
2411When specifying this attribute using @code{set-face-attribute} 2412When specifying this attribute using @code{set-face-attribute}
2412(@pxref{Attribute Functions}), you may also supply a font spec, a font 2413(@pxref{Attribute Functions}), you may also supply a font spec, a font
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index a146061c771..ec75361ace3 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -3121,8 +3121,7 @@ while still being visible themselves.
3121their descendants as well, keeping their relative positions unaltered. 3121their descendants as well, keeping their relative positions unaltered.
3122Note that the hook @code{move-frame-functions} (@pxref{Frame Position}) 3122Note that the hook @code{move-frame-functions} (@pxref{Frame Position})
3123is run for a child frame only when the position of the child frame 3123is run for a child frame only when the position of the child frame
3124relative to its parent frame changes. It is not run for a child frame 3124relative to its parent frame changes.
3125when the position of the parent frame changes.
3126 3125
3127 When a parent frame is resized, its child frames conceptually retain 3126 When a parent frame is resized, its child frames conceptually retain
3128their previous sizes and their positions relative to the left upper 3127their previous sizes and their positions relative to the left upper