summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-11-21 15:18:54 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-11-21 15:20:11 +0100
commitf176a36f4629b56c9fd9e3fc15aebd04a168c4f5 (patch)
tree30929abca5a6b003905e645472f2d7ed35f26024
parentbeaa2e49530b8149d2c22cb5fa15b8d48f7937b6 (diff)
downloademacs-f176a36f4629b56c9fd9e3fc15aebd04a168c4f5.tar.gz
; Doc fixes: remove references to missing symbols
* lisp/allout.el (allout-process-exposed): Don't refer to missing value 'flat-indented'. * lisp/help.el (resize-temp-buffer-window): Don't refer to missing function 'preserve-window-size'. * lisp/pcomplete.el (pcomplete-stub): Don't refer to missing function 'pcomplete-filename'.
-rw-r--r--lisp/allout.el3
-rw-r--r--lisp/help.el5
-rw-r--r--lisp/pcomplete.el4
3 files changed, 2 insertions, 10 deletions
diff --git a/lisp/allout.el b/lisp/allout.el
index 5f7087829e2..df0181cecbd 100644
--- a/lisp/allout.el
+++ b/lisp/allout.el
@@ -5356,9 +5356,6 @@ alternate presentation form:
`flat' -- Present prefix as numeric section.subsection..., starting with
section indicated by the START-NUM, innermost nesting first.
- X`flat-indented' -- Prefix is like `flat' for first topic at each
- X level, but subsequent topics have only leaf topic
- X number, padded with blanks to line up with first.
`indent' (symbol) -- Convert header prefixes to all white space,
except for distinctive bullets.
diff --git a/lisp/help.el b/lisp/help.el
index b25a8ce2995..f956111a52f 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -1945,10 +1945,7 @@ of a horizontal combination, restrain its new size by
`fit-window-to-buffer-horizontally' can inhibit resizing.
If WINDOW is the root window of its frame, resize the frame
-provided `fit-frame-to-buffer' is non-nil.
-
-This function may call `preserve-window-size' to preserve the
-size of WINDOW."
+provided `fit-frame-to-buffer' is non-nil."
(setq window (window-normalize-window window t))
(let* ((buffer (window-buffer window))
(height (if (functionp temp-buffer-max-height)
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el
index 8cb0aa3b7ad..ef286b70fe0 100644
--- a/lisp/pcomplete.el
+++ b/lisp/pcomplete.el
@@ -1210,9 +1210,7 @@ Returns nil if no completion was inserted.
Returns `sole' if completed with the only completion match.
Returns `shortest' if completed with the shortest of the matches.
Returns `partial' if completed as far as possible with the matches.
-Returns `listed' if a completion listing was shown.
-
-See also `pcomplete-filename'."
+Returns `listed' if a completion listing was shown."
(let* ((completion-ignore-case completion-ignore-case)
(completions (all-completions stub candidates))
(entry (try-completion stub candidates))