comparison etc/NEWS @ 373:6240c7796c7a r21-2b2

Import from CVS: tag r21-2b2
author cvs
date Mon, 13 Aug 2007 11:04:06 +0200
parents cc15677e0335
children d883f39b8495
comparison
equal deleted inserted replaced
372:49e1ed2d7ed8 373:6240c7796c7a
30 particular version is implied, "Emacs" will be used. 30 particular version is implied, "Emacs" will be used.
31 31
32 32
33 * Changes in XEmacs 21.2 33 * Changes in XEmacs 21.2
34 ======================== 34 ========================
35 None yet. 35
36 36 *** You can now create an "indirect buffer", like in GNU Emacs. An
37 indirect buffer shares its text with another buffer ("base buffer"),
38 but has its own major mode, local variables, extents, and narrowing.
39 An indirect buffer has a name of its own, distinct from those of the
40 base buffer and all other buffers. An indirect buffer cannot itself
41 be visiting a file (though its base buffer can be). The base buffer
42 cannot itself be indirect.
43
44 Use (make-indirect-buffer BASE-BUFFER NAME) to make an indirect buffer
45 named NAME whose base is BASE-BUFFER. If BASE-BUFFER is an indirect
46 buffer, its base buffer is used as the base for the new buffer.
47
48 You can make an indirect buffer current, or switch to it in a window,
49 just as you would a non-indirect buffer.
50
51 The function `buffer-base-buffer', given an indirect buffer, returns
52 its base buffer. It returns nil when given an ordinary buffer (not
53 indirect). `buffer-indirect-children' returns a list of the indirect
54 children of a base buffer.
55
56 #### The library `noutline' has versions of Outline mode and Outline
57 minor mode which let you display different parts of the outline in
58 different indirect buffers.
59
60
37 * Changes in XEmacs 21.0 61 * Changes in XEmacs 21.0
38 ======================== 62 ========================
39 63
40 ** XEmacs has been unbundled into constituent installable packages. 64 ** XEmacs has been unbundled into constituent installable packages.
41 See the Info documentation under "Packages" for more information. 65 See the Info documentation under "Packages" for more information.