emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105069: Remove documentation for Ref


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105069: Remove documentation for Refill and Longlines modes.
Date: Sat, 09 Jul 2011 22:38:26 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105069
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sat 2011-07-09 22:38:26 -0400
message:
  Remove documentation for Refill and Longlines modes.
  These will be obsoleted in a future version of Emacs.
  
  * text.texi (Refill, Longlines): Delete nodes.
  
  * ack.texi (Acknowledgments): Longlines removed from manual.
  
  * emacs.texi (Top): Update node listing.
modified:
  doc/emacs/ChangeLog
  doc/emacs/ack.texi
  doc/emacs/emacs.texi
  doc/emacs/text.texi
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2011-07-09 00:51:42 +0000
+++ b/doc/emacs/ChangeLog       2011-07-10 02:38:26 +0000
@@ -1,3 +1,11 @@
+2011-07-10  Chong Yidong  <address@hidden>
+
+       * text.texi (Refill, Longlines): Delete nodes.
+
+       * ack.texi (Acknowledgments): Longlines removed from manual.
+
+       * emacs.texi (Top): Update node listing.
+
 2011-07-09  Glenn Morris  <address@hidden>
 
        * fortran-xtra.texi (Fortran): Update handled extensions.

=== modified file 'doc/emacs/ack.texi'
--- a/doc/emacs/ack.texi        2011-05-18 03:39:45 +0000
+++ b/doc/emacs/ack.texi        2011-07-10 02:38:26 +0000
@@ -190,9 +190,7 @@
 
 @item
 Chong Yidong was the Emacs co-maintainer for Emacs 23.  He made many
-improvements to the Emacs display engine; and, together with Kai
-Gro?johann and Alex Schroeder, wrote @file{longlines.el}, a minor
-mode for wrapping long lines.
+improvements to the Emacs display engine.
 
 @item
 James Clark wrote SGML mode, a mode for editing SGML documents; and
@@ -689,14 +687,12 @@
 for motion in ``CapitalizedWordIdentifiers''; @file{latin1-disp.el}, a
 package that lets you display ISO 8859 characters on Latin-1 terminals
 by setting up appropriate display tables; @file{python.el}, a major mode
-for the Python programming language; @file{refill.el}, a mode for
-automatic paragraph refilling, akin to typical word processors;
address@hidden, a facility for displaying smiley faces;
address@hidden, a library for performing mode-dependent symbol
-completion; @file{benchmark.el} for timing code execution; and
address@hidden, a mode to control the display of the Emacs tool bar.
-With Riccardo Murri he wrote @file{vc-bzr.el}, support for the Bazaar
-version control system.
+for the Python programming language; @file{smiley.el}, a facility for
+displaying smiley faces; @file{sym-comp.el}, a library for performing
+mode-dependent symbol completion; @file{benchmark.el} for timing code
+execution; and @file{tool-bar.el}, a mode to control the display of
+the Emacs tool bar.  With Riccardo Murri he wrote @file{vc-bzr.el},
+support for the Bazaar version control system.
 
 @item
 Eric Ludlam wrote the Speedbar package; @file{checkdoc.el}, for checking

=== modified file 'doc/emacs/emacs.texi'
--- a/doc/emacs/emacs.texi      2011-05-17 02:26:56 +0000
+++ b/doc/emacs/emacs.texi      2011-07-10 02:38:26 +0000
@@ -585,8 +585,6 @@
 * Fill Prefix::         Filling paragraphs that are indented
                           or in a comment, etc.
 * Adaptive Fill::       How Emacs can determine the fill prefix automatically.
-* Refill::              Keeping paragraphs filled.
-* Longlines::           Editing text with very long lines.
 
 Outline Mode
 

=== modified file 'doc/emacs/text.texi'
--- a/doc/emacs/text.texi       2011-05-17 02:26:56 +0000
+++ b/doc/emacs/text.texi       2011-07-10 02:38:26 +0000
@@ -406,8 +406,6 @@
 * Fill Commands::  Commands to refill paragraphs and center lines.
 * Fill Prefix::    Filling paragraphs that are indented or in a comment, etc.
 * Adaptive Fill::  How Emacs can determine the fill prefix automatically.
-* Refill::         Keeping paragraphs filled.
-* Longlines::      Editing text with very long lines.
 @end menu
 
 @node Auto Fill
@@ -722,92 +720,6 @@
 line.  If it returns @code{nil}, @code{adaptive-fill-regexp} gets
 a chance to find a prefix.
 
address@hidden Refill
address@hidden Refill Mode
address@hidden refilling text, word processor style
address@hidden modes, Refill
address@hidden Refill minor mode
-
-  Refill minor mode provides support for keeping paragraphs filled as
-you type or modify them in other ways.  It provides an effect similar
-to typical word processor behavior.  This works by running a
-paragraph-filling command at suitable times.
-
-  To toggle the use of Refill mode in the current buffer, type
address@hidden refill-mode}.  When you are typing text, only characters
-which normally trigger auto filling, like the space character, will
-trigger refilling.  This is to avoid making it too slow.  Apart from
-self-inserting characters, other commands which modify the text cause
-refilling.
-
-  The current implementation is preliminary and not robust.  You can
-get better ``line wrapping'' behavior using Longlines mode.
address@hidden  However, Longlines mode has an important
-side-effect: the newlines that it inserts for you are not saved to
-disk, so the files that you make with Longlines mode will appear to be
-completely unfilled if you edit them without Longlines mode.
-
address@hidden Longlines
address@hidden Long Lines Mode
address@hidden refilling text, word processor style
address@hidden modes, Long Lines
address@hidden word wrap
address@hidden Long Lines minor mode
-
-  Sometimes, you may come across ``unfilled'' text files, which Emacs
-normally displays as a bunch of extremely long lines.  Comfortably
-reading and editing such files normally requires ``word wrap'', a
-feature that breaks up each long text line into multiple screen lines
-in a readable manner---by putting the breaks at word boundaries.  Many
-text editors, such as those built into many web browsers, perform word
-wrapping by default.
-
-  There are two different minor modes in Emacs that perform word
-wrapping.  The first is Visual Line mode, which does it by altering
-the behavior of screen line continuation.  @xref{Visual Line Mode},
-for information about Visual Line mode.
-
address@hidden longlines-mode
-  Instead of using Visual Line mode, you can use a minor mode called
-Long Lines mode.  Long Lines mode wraps lines by inserting or deleting
address@hidden newlines} as you type (@pxref{Hard and Soft Newlines}).
-These soft newlines won't show up when you save the buffer into a
-file, or when you copy the text into the kill ring, clipboard, or a
-register.  Unlike Visual Line mode, Lone Lines mode breaks long lines
-at the fill column (@pxref{Fill Commands}), rather than the right
-window edge.  To enable Long Lines mode, type @kbd{M-x
-longlines-mode}.  If the text is full of long lines, this also
-immediately ``wraps'' them all.
-
address@hidden longlines-auto-wrap
-  The word wrap performed by Long Lines mode is @emph{not} the same as
-ordinary filling (@pxref{Fill Commands}).  It does not contract
-multiple spaces into a single space, recognize fill prefixes
-(@pxref{Fill Prefix}), or perform adaptive filling (@pxref{Adaptive
-Fill}).  The reason for this is that a wrapped line is still,
-conceptually, a single line.  Each soft newline is equivalent to
-exactly one space in that long line, and vice versa.  However, you can
-still call filling functions such as @kbd{M-q}, and these will work as
-expected, inserting soft newlines that won't show up on disk or when
-the text is copied.  You can even rely entirely on the normal fill
-commands by turning off automatic line wrapping, with @kbd{C-u M-x
-longlines-auto-wrap}.  To turn automatic line wrapping back on, type
address@hidden longlines-auto-wrap}.
-
address@hidden longlines-show-hard-newlines
-  Type @kbd{RET} to insert a hard newline, one which automatic
-refilling will not remove.  If you want to see where all the hard
-newlines are, type @kbd{M-x longlines-show-hard-newlines}.  This will
-mark each hard newline with a special symbol.  The same command with a
-prefix argument turns this display off.
-
-  Long Lines mode does not change normal text files that are already
-filled, since the existing newlines are considered hard newlines.
-Before Long Lines can do anything, you need to transform each
-paragraph into a long line.  One way is to set @code{fill-column} to a
-large number (e.g., @kbd{C-u 9999 C-x f}), re-fill all the paragraphs,
-and then set @code{fill-column} back to its original value.
-
 @node Case
 @section Case Conversion Commands
 @cindex case conversion


reply via email to

[Prev in Thread] Current Thread [Next in Thread]