From ad74677cf3a0b15b14bf8003ae77c5da12505b60 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Fri, 17 Jun 2022 12:04:48 +0200 Subject: [PATCH 1/4] Delete reference to obsolete library complete.el * doc/misc/tramp.texi (Frequently Asked Questions): Delete reference to obsolete library complete.el. --- doc/misc/tramp.texi | 8 -------- 1 file changed, 8 deletions(-) diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index a8079a0fa4f..b8279c410a2 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi @@ -4986,14 +4986,6 @@ minibuffer: (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}}. The minibuffer expands for further editing. From e0bac17bbc51fc53d3555011b540b775942961d9 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 17 Jun 2022 14:17:51 +0200 Subject: [PATCH 2/4] Mention face quirks after the final line in the lispref manual * doc/lispref/display.texi (Face Attributes): Mention the quirks about point after the final line (bug#56011). --- doc/lispref/display.texi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 1147ba112a6..404cf1b247a 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi @@ -2593,6 +2593,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 From 017bdb161141c0b5f3981a124bdeadc17a20a558 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 17 Jun 2022 14:20:05 +0200 Subject: [PATCH 3/4] Fix a tagging problem in tramp.texi * doc/misc/tramp.texi (Frequently Asked Questions): Restore an @end lisp removed by accident. --- doc/misc/tramp.texi | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index b8279c410a2..745046f8fed 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi @@ -4985,6 +4985,7 @@ minibuffer: (before my-minibuffer-complete activate) (expand-abbrev)) @end group +@end lisp The reduced typing: @kbd{C-x C-f xy @key{TAB}}. From d671cd57c488ec792997fd4051440187dec3434f Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 17 Jun 2022 16:48:02 +0200 Subject: [PATCH 4/4] Update cl-struct-sequence-type doc string * lisp/emacs-lisp/cl-macs.el (cl-struct-sequence-type): Fix doc string to reflect what it does (bug#46523). --- lisp/emacs-lisp/cl-macs.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index c27a43f3baf..85ebcaade71 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3288,8 +3288,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)))