From 0daee095185565b1527c570d8ad17dbafc7601c8 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 17 Apr 2000 15:27:23 +0000 Subject: [PATCH] *** empty log message *** --- etc/NEWS | 16 ++++++++++++++++ lisp/ChangeLog | 12 ++++++++++++ src/ChangeLog | 4 ++++ 3 files changed, 32 insertions(+) diff --git a/etc/NEWS b/etc/NEWS index c9a18fa4369..8ca76c1afd8 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -16,6 +16,9 @@ images and toolkit scrollbars. Use the --help option to list them. * Changes in Emacs 21.1 +** The new command `clone-buffer-indirectly' can be used to create +an indirect buffer that is a twin copy of the current buffer. + ** New user options `backup-directory-alist' and `make-backup-file-name-function' are provided to control the placement of backups, typically in a single directory or in an invisible @@ -101,6 +104,19 @@ area or with tooltips. ** New user option `read-mail-command' specifies a command to use to read mail from the menu etc. +** Changes in Texinfo mode. + +** A couple of new key bindings have been added for inserting Texinfo +macros + + Key binding Macro + ------------------------- + C-c C-c C-s @strong + C-c C-c C-e @emph + C-c C-c u @url + C-c C-c q @quotation + C-c C-c m @email + ** Changes in Outline mode. There is now support for Imenu to index headings. A new command diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dd66d8249d..7f85ae88e72 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,15 @@ +2000-04-17 Gerd Moellmann + + * textmodes/texinfo.el (texinfo-insert-@email) + (texinfo-insert-@emph, texinfo-insert-@quotation) + (texinfo-insert-@strong, texinfo-insert-@url): New functions. + (texinfo-mode-map): Add key bindings for them. + + * files.el (basic-save-buffer-2): Use a template with `$' + instead of `#' for VMS. + + * simple.el (clone-indirect-buffer): New function. + 2000-04-16 Stephen Eglen * iswitchb.el (iswitchb-case): New function. If the user input diff --git a/src/ChangeLog b/src/ChangeLog index d8a16461036..4d017ed8fd0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2000-04-17 Gerd Moellmann + * buffer.c (clone_per_buffer_values): New function. + (Fmake_indirect_buffer): Add optional argument CLONE. Call + clone_per_buffer_values if CLONE is not nil. + * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix. 2000-04-16 Dave Love