mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
Merge from origin/emacs-27
8ad48a0bdd
(origin/emacs-27) Improve doc string of 'text-scale-adjust'7a25ff767d
Clarify the indent-rigidly doc string6c5ddf0e0b
Fix two small tab bar issuesc71e08eba9
Fix last change in syntax.texi # Conflicts: # lisp/indent.el
This commit is contained in:
commit
c0d504eb7e
@ -573,10 +573,11 @@ and by Font Lock mode during syntactic fontification (@pxref{Syntactic
|
||||
Font Lock}). It is called with two arguments, @var{start} and
|
||||
@var{end}, which are the starting and ending positions of the text on
|
||||
which it should act. It is allowed to call @code{syntax-ppss} on any
|
||||
position before @var{end}, but if it calls @code{syntax-ppss} on some
|
||||
position and later modifies the buffer on some earlier position,
|
||||
then it is its responsibility to call @code{syntax-ppss-flush-cache}
|
||||
to flush the now obsolete info from the cache.
|
||||
position before @var{end}, but if a Lisp program calls
|
||||
@code{syntax-ppss} on some position and later modifies the buffer at
|
||||
some earlier position, then it is that program's responsibility to
|
||||
call @code{syntax-ppss-flush-cache} to flush the now obsolete info
|
||||
from the cache.
|
||||
|
||||
@strong{Caution:} When this variable is non-@code{nil}, Emacs removes
|
||||
@code{syntax-table} text properties arbitrarily and relies on
|
||||
|
@ -343,7 +343,7 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
|
||||
(const :tag "Never" nil)
|
||||
(const :tag "Always" t)
|
||||
(repeat (symbol :tag "Parameter")))
|
||||
"25.1")
|
||||
"27.1")
|
||||
(iconify-child-frame frames
|
||||
(choice
|
||||
(const :tag "Do nothing" nil)
|
||||
|
@ -354,9 +354,9 @@ INC may be passed as a numeric prefix argument.
|
||||
The actual adjustment made depends on the final component of the
|
||||
key-binding used to invoke the command, with all modifiers removed:
|
||||
|
||||
+, = Increase the default face height by one step
|
||||
- Decrease the default face height by one step
|
||||
0 Reset the default face height to the global default
|
||||
+, = Increase the height of the default face by one step
|
||||
- Decrease the height of the default face by one step
|
||||
0 Reset the height of the default face to the global default
|
||||
|
||||
After adjusting, continue to read input events and further adjust
|
||||
the face height as long as the input event read
|
||||
|
@ -1370,6 +1370,7 @@ FRAME defaults to the selected frame."
|
||||
FRAME defaults to the selected frame."
|
||||
(setq frame (window-normalize-frame frame))
|
||||
(- (frame-native-height frame)
|
||||
(tab-bar-height frame t)
|
||||
(* 2 (frame-internal-border-width frame))))
|
||||
|
||||
(defun frame-outer-width (&optional frame)
|
||||
|
@ -250,7 +250,8 @@ It is activated by calling `indent-rigidly' interactively.")
|
||||
If called interactively with no prefix argument, activate a
|
||||
transient mode in which the indentation can be adjusted interactively
|
||||
by typing \\<indent-rigidly-map>\\[indent-rigidly-left], \\[indent-rigidly-right], \\[indent-rigidly-left-to-tab-stop], or \\[indent-rigidly-right-to-tab-stop].
|
||||
Typing any other key exits this mode. If `transient-mark-mode' is enabled,
|
||||
Typing any other key exits this mode, and this key is then
|
||||
acted upon as normally. If `transient-mark-mode' is enabled,
|
||||
exiting also deactivates the mark.
|
||||
|
||||
If called from a program, or interactively with prefix ARG,
|
||||
|
Loading…
Reference in New Issue
Block a user