# HG changeset patch # User Phillip Rulon # Date 939432141 0 # Node ID f52051afc40a11d57ae757c614ecb05c5784ab22 # Parent ce46ba443d459d86db9f6f58f54b721324e4887c *** empty log message *** diff -r ce46ba443d45 -r f52051afc40a etc/NEWS --- a/etc/NEWS Sat Oct 09 01:19:36 1999 +0000 +++ b/etc/NEWS Sat Oct 09 01:22:21 1999 +0000 @@ -8,6 +8,55 @@ * Changes in Emacs 21.1 +* New packages + +** delim-col + +Helps to prettify columns in a text region or rectangle. + +Here is an example of columns: + +horse apple bus +dog pineapple car EXTRA +porcupine strawberry airplane + +Doing the following settings: + + (setq delimit-columns-str-before "[ ") + (setq delimit-columns-str-after " ]") + (setq delimit-columns-str-separator ", ") + (setq delimit-columns-separator "\t") + + +Selecting the lines above and typing: + + M-x delimit-columns-region + +It results: + +[ horse , apple , bus , ] +[ dog , pineapple , car , EXTRA ] +[ porcupine, strawberry, airplane, ] + +delim-col has the following options: + + delimit-columns-str-before Specify a string to be inserted + before all columns. + + delimit-columns-str-separator Specify a string to be inserted + between each column. + + delimit-columns-str-after Specify a string to be inserted + after all columns. + + delimit-columns-separator Specify a regexp which separates + each column. + +delim-col has the following commands: + + delimit-columns-region Prettify all columns in a text region. + delimit-columns-rectangle Prettify all columns in a text rectangle. + ** Faces and frame parameters. There are four new faces `scroll-bar', `border', `cursor' and `mouse'. diff -r ce46ba443d45 -r f52051afc40a lisp/ChangeLog --- a/lisp/ChangeLog Sat Oct 09 01:19:36 1999 +0000 +++ b/lisp/ChangeLog Sat Oct 09 01:22:21 1999 +0000 @@ -149,6 +149,10 @@ 1999-09-27 Richard M. Stallman + * hexl.el (hexl-mode): Do nothing if already in hexl mode. + +1999-09-27 Richard M. Stallman + * faces.el (region): Doc fix. 1999-09-27 Dave Love diff -r ce46ba443d45 -r f52051afc40a src/ChangeLog Binary file src/ChangeLog has changed