diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-03-10 05:45:47 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-03-10 05:45:47 +0100 |
commit | a1c84b4308b509c2215fe19f8c8754d76413d43c (patch) | |
tree | a624c07d2dd7c7d99bed0a4afc6a9d10f8283728 /doc/lispref/buffers.texi | |
parent | 4cb52200cb67d3cd1aa77717d12d4b88845e1755 (diff) | |
download | emacs-a1c84b4308b509c2215fe19f8c8754d76413d43c.tar.gz emacs-a1c84b4308b509c2215fe19f8c8754d76413d43c.tar.bz2 emacs-a1c84b4308b509c2215fe19f8c8754d76413d43c.zip |
Remove several references to Emacs 22 and earlier
* admin/charsets/mapfiles/README:
* doc/emacs/custom.texi (Saving Customizations):
* doc/lispintro/emacs-lisp-intro.texi (Simple Extension):
* doc/misc/efaq-w32.texi (Location of init file):
* doc/misc/gnus-faq.texi (FAQ 1-3):
* doc/misc/gnus.texi (Top, Various, Image Enhancements):
* lisp/erc/erc-menu.el (menu):
* lisp/progmodes/cfengine.el (cfengine-fill-paragraph):
Remove some references to Emacs 22 and earlier.
* doc/lispref/buffers.texi:
* doc/lispref/eval.texi:
* doc/lispref/files.texi:
* doc/lispref/keymaps.texi:
* doc/lispref/loading.texi:
* doc/lispref/minibuf.texi:
* doc/lispref/positions.texi:
* doc/lispref/variables.texi: Remove comments about "Emacs 19
specific" features.
Diffstat (limited to 'doc/lispref/buffers.texi')
-rw-r--r-- | doc/lispref/buffers.texi | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/lispref/buffers.texi b/doc/lispref/buffers.texi index 69733f91c4a..0d31b0bc4c6 100644 --- a/doc/lispref/buffers.texi +++ b/doc/lispref/buffers.texi @@ -309,7 +309,6 @@ foo This function renames the current buffer to @var{newname}. An error is signaled if @var{newname} is not a string. -@c Emacs 19 feature Ordinarily, @code{rename-buffer} signals an error if @var{newname} is already in use. However, if @var{unique} is non-@code{nil}, it modifies @var{newname} to make a name that is not in use. Interactively, you can @@ -344,7 +343,6 @@ a name. For example: See also the function @code{get-buffer-create} in @ref{Creating Buffers}. @end defun -@c Emacs 19 feature @defun generate-new-buffer-name starting-name &optional ignore This function returns a name that would be unique for a new buffer---but does not create the buffer. It starts with @var{starting-name}, and @@ -879,7 +877,6 @@ then @code{other-buffer} uses that predicate to decide which buffers to consider. It calls the predicate once for each buffer, and if the value is @code{nil}, that buffer is ignored. @xref{Buffer Parameters}. -@c Emacs 19 feature If @var{visible-ok} is @code{nil}, @code{other-buffer} avoids returning a buffer visible in any window on any visible frame, except as a last resort. If @var{visible-ok} is non-@code{nil}, then it does not matter |