1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge from origin/emacs-28

d671cd57c4 Update cl-struct-sequence-type doc string
017bdb1611 Fix a tagging problem in tramp.texi
e0bac17bbc Mention face quirks after the final line in the lispref ma...
ad74677cf3 Delete reference to obsolete library complete.el
This commit is contained in:
Stefan Kangas 2022-06-18 06:31:18 +02:00
commit b28debadf3
3 changed files with 10 additions and 9 deletions

View file

@ -2706,6 +2706,13 @@ doesn't specify an explicit value for a face, the value from the
original face definition by @code{defface} is inherited
(@pxref{Defining Faces}).
Some modes, like @code{hl-line-mode}, use a face with an
@code{:extend} property to mark the entire current line. Note,
however, that Emacs will always allow you to move point after the
final character in a buffer, and if the buffer ends with a newline
character, point can be placed on what is seemingly a line at the end
of the buffer---but Emacs can't highlight that ``line'', because it
doesn't really exist.
@end table
@defun font-family-list &optional frame

View file

@ -5325,13 +5325,6 @@ minibuffer:
(before my-minibuffer-complete activate)
(expand-abbrev))
@end group
@group
;; If you use partial-completion-mode
(defadvice PC-do-completion
(before my-PC-do-completion activate)
(expand-abbrev))
@end group
@end lisp
The reduced typing: @kbd{C-x C-f xy @key{TAB}}.

View file

@ -3337,8 +3337,9 @@ the form NAME which is a shorthand for (NAME NAME)."
(defun cl-struct-sequence-type (struct-type)
"Return the sequence used to build STRUCT-TYPE.
STRUCT-TYPE is a symbol naming a struct type. Return `record',
`vector', or `list' if STRUCT-TYPE is a struct type, nil otherwise."
STRUCT-TYPE is a symbol naming a struct type. Return values are
either `vector', `list' or nil (and the latter indicates a
`record' struct type."
(declare (side-effect-free t) (pure t))
(cl--struct-class-type (cl--struct-get-class struct-type)))