aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-12 15:01:15 +0000
committerGerd Moellmann1999-10-12 15:01:15 +0000
commitebcfda83a0e059e40fe29350fa21690c6026b2cd (patch)
treea01a219584c2e9e04f013f4d787632666ddfdda7 /etc
parent99485bca13bcb9e4582764134648855da2d5e071 (diff)
downloademacs-ebcfda83a0e059e40fe29350fa21690c6026b2cd.tar.gz
emacs-ebcfda83a0e059e40fe29350fa21690c6026b2cd.zip
Add sh-script changes.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS102
1 files changed, 53 insertions, 49 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e02e10b285c..ecfedc8dfd2 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -8,55 +8,6 @@ For older news, see the file ONEWS.
8 8
9* Changes in Emacs 21.1 9* Changes in Emacs 21.1
10 10
11* New packages
12
13** delim-col
14
15Helps to prettify columns in a text region or rectangle.
16
17Here is an example of columns:
18
19horse apple bus
20dog pineapple car EXTRA
21porcupine strawberry airplane
22
23Doing the following settings:
24
25 (setq delimit-columns-str-before "[ ")
26 (setq delimit-columns-str-after " ]")
27 (setq delimit-columns-str-separator ", ")
28 (setq delimit-columns-separator "\t")
29
30
31Selecting the lines above and typing:
32
33 M-x delimit-columns-region
34
35It results:
36
37[ horse , apple , bus , ]
38[ dog , pineapple , car , EXTRA ]
39[ porcupine, strawberry, airplane, ]
40
41delim-col has the following options:
42
43 delimit-columns-str-before Specify a string to be inserted
44 before all columns.
45
46 delimit-columns-str-separator Specify a string to be inserted
47 between each column.
48
49 delimit-columns-str-after Specify a string to be inserted
50 after all columns.
51
52 delimit-columns-separator Specify a regexp which separates
53 each column.
54
55delim-col has the following commands:
56
57 delimit-columns-region Prettify all columns in a text region.
58 delimit-columns-rectangle Prettify all columns in a text rectangle.
59
60** Faces and frame parameters. 11** Faces and frame parameters.
61 12
62There are four new faces `scroll-bar', `border', `cursor' and `mouse'. 13There are four new faces `scroll-bar', `border', `cursor' and `mouse'.
@@ -445,6 +396,59 @@ the text at point.
445 396
446*** whitespace.el ??? 397*** whitespace.el ???
447 398
399*** PostScript mode (ps-mode) is a new major mode for editing PostScript
400files. It offers: interaction with a PostScript interpreter, including
401(very basic) error handling; fontification, easily customizable for
402interpreter messages; auto-indentation; insertion of EPSF templates and
403often used code snippets; viewing of BoundingBox; commenting out /
404uncommenting regions; conversion of 8bit characters to PostScript octal
405codes. All functionality is accessible through a menu.
406
407*** delim-col helps to prettify columns in a text region or rectangle.
408
409Here is an example of columns:
410
411horse apple bus
412dog pineapple car EXTRA
413porcupine strawberry airplane
414
415Doing the following settings:
416
417 (setq delimit-columns-str-before "[ ")
418 (setq delimit-columns-str-after " ]")
419 (setq delimit-columns-str-separator ", ")
420 (setq delimit-columns-separator "\t")
421
422
423Selecting the lines above and typing:
424
425 M-x delimit-columns-region
426
427It results:
428
429[ horse , apple , bus , ]
430[ dog , pineapple , car , EXTRA ]
431[ porcupine, strawberry, airplane, ]
432
433delim-col has the following options:
434
435 delimit-columns-str-before Specify a string to be inserted
436 before all columns.
437
438 delimit-columns-str-separator Specify a string to be inserted
439 between each column.
440
441 delimit-columns-str-after Specify a string to be inserted
442 after all columns.
443
444 delimit-columns-separator Specify a regexp which separates
445 each column.
446
447delim-col has the following commands:
448
449 delimit-columns-region Prettify all columns in a text region.
450 delimit-columns-rectangle Prettify all columns in a text rectangle.
451
448** Withdrawn packages 452** Withdrawn packages
449 453
450*** mldrag.el has been removed. mouse.el provides the same 454*** mldrag.el has been removed. mouse.el provides the same