comparison etc/NEWS @ 48060:26cda8b2f7ea

+++/--- bugfix
author Jonathan Yavner <jyavner@member.fsf.org>
date Tue, 29 Oct 2002 05:26:18 +0000
parents b302909e7e67
children 41fb6d06759c
comparison
equal deleted inserted replaced
48059:e638758d969d 48060:26cda8b2f7ea
1072 these tables in a special major mode. The package emulates WYSIWYG 1072 these tables in a special major mode. The package emulates WYSIWYG
1073 table editing available in modern word processors. The package also 1073 table editing available in modern word processors. The package also
1074 can generate a table source in typesetting and markup languages such 1074 can generate a table source in typesetting and markup languages such
1075 as latex and html from the visually laid out text table. 1075 as latex and html from the visually laid out text table.
1076 1076
1077 --- 1077 +++
1078 ** SES mode (ses-mode) is a new major mode for creating and editing 1078 ** SES mode (ses-mode) is a new major mode for creating and editing
1079 spreadsheet files. Besides the usual Emacs features (intuitive command 1079 spreadsheet files. Besides the usual Emacs features (intuitive command
1080 letters, undo, cell formulas in Lisp, plaintext files, etc.) it also offers 1080 letters, undo, cell formulas in Lisp, plaintext files, etc.) it also offers
1081 viral immunity and import/export of tab-separated values. 1081 viral immunity and import/export of tab-separated values.
1082 1082
1090 with Custom. 1090 with Custom.
1091 1091
1092 1092
1093 * Lisp Changes in Emacs 21.4 1093 * Lisp Changes in Emacs 21.4
1094 1094
1095 +++
1096 ** New Lisp library testcover.el works with edebug to help you determine 1095 ** New Lisp library testcover.el works with edebug to help you determine
1097 whether you've tested all your Lisp code. Function testcover-start 1096 whether you've tested all your Lisp code. Function testcover-start
1098 instruments all functions in a given file. Then test your code. Function 1097 instruments all functions in a given file. Then test your code. Function
1099 testcover-mark-all adds overlay "splotches" to the Lisp file's buffer to 1098 testcover-mark-all adds overlay "splotches" to the Lisp file's buffer to
1100 show where coverage is lacking. Command testcover-next-mark (bind it to 1099 show where coverage is lacking. Command testcover-next-mark (bind it to
1108 1107
1109 *** For difficult cases, you can add do-nothing macros to your code to help 1108 *** For difficult cases, you can add do-nothing macros to your code to help
1110 out the test coverage tool. The macro 1value suppresses a brown splotch for 1109 out the test coverage tool. The macro 1value suppresses a brown splotch for
1111 its argument. The macro noreturn suppresses a red splotch. 1110 its argument. The macro noreturn suppresses a red splotch.
1112 1111
1113 --- 1112 +++
1114 ** New function unsafep returns nil if the given Lisp form can't possibly 1113 ** New function unsafep returns nil if the given Lisp form can't possibly
1115 do anything dangerous; otherwise it returns a reason why the form might be 1114 do anything dangerous; otherwise it returns a reason why the form might be
1116 unsafe (calls dangerous function, alters global variable, etc). 1115 unsafe (calls dangerous function, alters global variable, etc).
1117 1116
1118 ** When you are printing using print-continuous-numbering, 1117 ** When you are printing using print-continuous-numbering,