aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorEli Zaretskii2019-12-28 15:19:05 +0200
committerEli Zaretskii2019-12-28 15:19:05 +0200
commit74261ff301d9dc46a4aee9878febaaaa6f574a18 (patch)
tree16995a14ab244812abbd2c8fc306c5b68d9530a2 /doc/lispref
parent6c9571379ed68c171fcf80c4368f30bc9d453d2f (diff)
downloademacs-74261ff301d9dc46a4aee9878febaaaa6f574a18.tar.gz
emacs-74261ff301d9dc46a4aee9878febaaaa6f574a18.zip
Rearrange NEWS, add missing documentation
* etc/NEWS: Rearrange and mark entries whether documented or not. * doc/lispref/streams.texi (Output Variables): Document the new default of 'print-quoted'. * doc/lispref/keymaps.texi (Functions for Key Lookup): Document that KEYMAP arg to 'lookup-key' can also be a list. * doc/lispref/customize.texi (Variable Definitions): Document the :local keyword of 'defcustom'. * doc/lispref/numbers.texi (Float Basics): Document changes in 'logb'. * doc/lispref/hooks.texi (Standard Hooks): Document 'comint-password-function'. * doc/emacs/display.texi (Text Scale): Document text-size adjustment using the mouse wheel. * doc/emacs/frames.texi (Mouse Commands): Document image scaling with the mouse wheel. * doc/emacs/windows.texi (Window Convenience): Document 'global-tab-line-mode'. * doc/emacs/search.texi (Repeat Isearch, Symbol Search) (Isearch Yank): Document the new support for numeric arguments in Isearch commands. (Special Isearch): Document 'M-s M->' and 'M-s M-<'. (Search Customizations): Document 'isearch-lazy-count'. Improve indexing. (Not Exiting Isearch): Document the new value of 'isearch-allow-scroll'. * doc/emacs/maintaining.texi (Xref Commands): Document the new 'g' key binding. * doc/emacs/package.texi (Package Installation): Document changes in 'package-check-signature'. * doc/emacs/maintaining.texi (VC Change Log): Document 'vc-log-search'. * doc/emacs/dired.texi (Operating on Files): Document 'dired-vc-rename'.
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/customize.texi7
-rw-r--r--doc/lispref/hooks.texi4
-rw-r--r--doc/lispref/keymaps.texi2
-rw-r--r--doc/lispref/numbers.texi10
-rw-r--r--doc/lispref/streams.texi3
5 files changed, 20 insertions, 6 deletions
diff --git a/doc/lispref/customize.texi b/doc/lispref/customize.texi
index 64c06c23867..b19feaf977f 100644
--- a/doc/lispref/customize.texi
+++ b/doc/lispref/customize.texi
@@ -427,6 +427,13 @@ the build-time context. This also has the side-effect that the
427@xref{Building Emacs}. 427@xref{Building Emacs}.
428@end table 428@end table
429 429
430@item :local @var{value}
431@kindex local@r{, @code{defcustom} keyword}
432If the @var{value} is @code{t}, mark @var{option} as automatically
433buffer-local; if the value is @code{permanent}, also set @var{option}s
434@code{permanent-local} property to @code{t}. @xref {Creating
435Buffer-Local}.
436
430@item :risky @var{value} 437@item :risky @var{value}
431@kindex risky@r{, @code{defcustom} keyword} 438@kindex risky@r{, @code{defcustom} keyword}
432Set the variable's @code{risky-local-variable} property to 439Set the variable's @code{risky-local-variable} property to
diff --git a/doc/lispref/hooks.texi b/doc/lispref/hooks.texi
index 4542db97306..26d26bed8ae 100644
--- a/doc/lispref/hooks.texi
+++ b/doc/lispref/hooks.texi
@@ -110,6 +110,10 @@ Function to call to quit the current buffer.
110@item change-major-mode-hook 110@item change-major-mode-hook
111@xref{Creating Buffer-Local}. 111@xref{Creating Buffer-Local}.
112 112
113@item comint-password-function
114This abnormal hook permits a derived mode to supply a password for the
115underlying command interpreter without prompting the user.
116
113@item command-line-functions 117@item command-line-functions
114@xref{Command-Line Arguments}. 118@xref{Command-Line Arguments}.
115 119
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi
index 8ff329bdacb..813bf814394 100644
--- a/doc/lispref/keymaps.texi
+++ b/doc/lispref/keymaps.texi
@@ -1171,6 +1171,8 @@ the second example.
1171@end group 1171@end group
1172@end example 1172@end example
1173 1173
1174The @var{keymap} argument can also be a list of keymaps.
1175
1174Unlike @code{read-key-sequence}, this function does not modify the 1176Unlike @code{read-key-sequence}, this function does not modify the
1175specified events in ways that discard information (@pxref{Key Sequence 1177specified events in ways that discard information (@pxref{Key Sequence
1176Input}). In particular, it does not convert letters to lower case and 1178Input}). In particular, it does not convert letters to lower case and
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index 939ad5c85a1..3127354ee2e 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -316,11 +316,11 @@ and returns the result. @var{x1} and @var{x2} must be floating point.
316@end defun 316@end defun
317 317
318@defun logb x 318@defun logb x
319This function returns the binary exponent of @var{x}. More 319This function returns the binary exponent of @var{x}. More precisely,
320precisely, if @var{x} is finite and nonzero, the value is the 320if @var{x} is finite and nonzero, the value is the logarithm base 2 of
321logarithm base 2 of @math{|x|}, rounded down to an integer. 321@math{|x|}, rounded down to an integer. If @var{x} is zero or
322If @var{x} is zero, infinite, or a NaN, the value is minus infinity, 322infinite, the value is infinity; if @var{x} is a NaN, the value is a
323plus infinity, or a NaN respectively. 323NaN.
324 324
325@example 325@example
326(logb 10) 326(logb 10)
diff --git a/doc/lispref/streams.texi b/doc/lispref/streams.texi
index 600639f244f..08c3e519ebe 100644
--- a/doc/lispref/streams.texi
+++ b/doc/lispref/streams.texi
@@ -740,7 +740,8 @@ The default is @code{t}, meaning display in the echo area.
740@defvar print-quoted 740@defvar print-quoted
741If this is non-@code{nil}, that means to print quoted forms using 741If this is non-@code{nil}, that means to print quoted forms using
742abbreviated reader syntax, e.g., @code{(quote foo)} prints as 742abbreviated reader syntax, e.g., @code{(quote foo)} prints as
743@code{'foo}, and @code{(function foo)} as @code{#'foo}. 743@code{'foo}, and @code{(function foo)} as @code{#'foo}. The default
744is @code{t}.
744@end defvar 745@end defvar
745 746
746@defvar print-escape-newlines 747@defvar print-escape-newlines