]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Mon, 17 Apr 2000 15:27:23 +0000 (15:27 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 17 Apr 2000 15:27:23 +0000 (15:27 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index c9a18fa436994da8b2b68cf438937368c7b0983a..8ca76c1afd8eb0711dbc058a4c988cb44cc27dd1 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -16,6 +16,9 @@ images and toolkit scrollbars.  Use the --help option to list them.
 \f
 * 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
index 5dd66d8249d32fe87aa4653c831bac6c65532a50..7f85ae88e72e14b5b8af94197fd3cbcd6a0d2aec 100644 (file)
@@ -1,3 +1,15 @@
+2000-04-17  Gerd Moellmann  <gerd@gnu.org>
+
+       * 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  <stephen@gnu.org>
 
        * iswitchb.el (iswitchb-case): New function.  If the user input
index d8a164610361e26c8667ed53c866810601ea1dda..4d017ed8fd02ce51b4a20ad434c1781187d10c43 100644 (file)
@@ -1,5 +1,9 @@
 2000-04-17  Gerd Moellmann  <gerd@gnu.org>
 
+       * 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  <fx@gnu.org>