diff options
| author | Eli Zaretskii | 2019-12-28 15:19:05 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-12-28 15:19:05 +0200 |
| commit | 74261ff301d9dc46a4aee9878febaaaa6f574a18 (patch) | |
| tree | 16995a14ab244812abbd2c8fc306c5b68d9530a2 /doc/lispref | |
| parent | 6c9571379ed68c171fcf80c4368f30bc9d453d2f (diff) | |
| download | emacs-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.texi | 7 | ||||
| -rw-r--r-- | doc/lispref/hooks.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/keymaps.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/numbers.texi | 10 | ||||
| -rw-r--r-- | doc/lispref/streams.texi | 3 |
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} | ||
| 432 | If the @var{value} is @code{t}, mark @var{option} as automatically | ||
| 433 | buffer-local; if the value is @code{permanent}, also set @var{option}s | ||
| 434 | @code{permanent-local} property to @code{t}. @xref {Creating | ||
| 435 | Buffer-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} |
| 432 | Set the variable's @code{risky-local-variable} property to | 439 | Set 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 | ||
| 114 | This abnormal hook permits a derived mode to supply a password for the | ||
| 115 | underlying 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 | ||
| 1174 | The @var{keymap} argument can also be a list of keymaps. | ||
| 1175 | |||
| 1174 | Unlike @code{read-key-sequence}, this function does not modify the | 1176 | Unlike @code{read-key-sequence}, this function does not modify the |
| 1175 | specified events in ways that discard information (@pxref{Key Sequence | 1177 | specified events in ways that discard information (@pxref{Key Sequence |
| 1176 | Input}). In particular, it does not convert letters to lower case and | 1178 | Input}). 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 |
| 319 | This function returns the binary exponent of @var{x}. More | 319 | This function returns the binary exponent of @var{x}. More precisely, |
| 320 | precisely, if @var{x} is finite and nonzero, the value is the | 320 | if @var{x} is finite and nonzero, the value is the logarithm base 2 of |
| 321 | logarithm base 2 of @math{|x|}, rounded down to an integer. | 321 | @math{|x|}, rounded down to an integer. If @var{x} is zero or |
| 322 | If @var{x} is zero, infinite, or a NaN, the value is minus infinity, | 322 | infinite, the value is infinity; if @var{x} is a NaN, the value is a |
| 323 | plus infinity, or a NaN respectively. | 323 | NaN. |
| 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 |
| 741 | If this is non-@code{nil}, that means to print quoted forms using | 741 | If this is non-@code{nil}, that means to print quoted forms using |
| 742 | abbreviated reader syntax, e.g., @code{(quote foo)} prints as | 742 | abbreviated 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 |
| 744 | is @code{t}. | ||
| 744 | @end defvar | 745 | @end defvar |
| 745 | 746 | ||
| 746 | @defvar print-escape-newlines | 747 | @defvar print-escape-newlines |