# HG changeset patch # User Stefan Monnier # Date 975339279 0 # Node ID 0c780fd30da5523d6f06b6347324eb5f1a73d3d7 # Parent 67b6bdbd95c629ac0bb804c6fdd0ff907acd90a0 New font-lock-doc-face. `comment-region' doesn't comment only whole lines. Bad backrefs signal an error rather than turning into digits. diff -r 67b6bdbd95c6 -r 0c780fd30da5 etc/NEWS --- a/etc/NEWS Mon Nov 27 15:32:38 2000 +0000 +++ b/etc/NEWS Mon Nov 27 15:34:39 2000 +0000 @@ -889,6 +889,9 @@ *** `font-lock-syntactic-face-function' allows major-modes to choose the face used for each string/comment. +*** A new standard face `font-lock-doc-face'. +Meant for Lisp docstrings, Javadoc comments and other "documentation in code". + ** Comint (subshell) changes These changes generally affect all modes derived from comint mode, which @@ -1690,6 +1693,8 @@ *** The comment operations are now provided by the newcomment.el package which allows different styles of comment-region and should be more robust while offering the same functionality. +`comment-region' now doesn't always comment a-line-at-a-time, but only +comments the region, breaking the line at point if necessary. +++ *** The Ebrowse package implements a C++ class browser and tags @@ -2429,6 +2434,9 @@ +++ ** Regular expressions now support intervals \{n,m\} as well as Perl's shy-groups \(?:...\) and non-greedy *? +? and ?? operators. +Also backreferences like \2 are now considered as an error if the +corresponding subgroup does not exist (or is not closed yet). +Previously it would have been silently turned into `2' (ignoring the `\'). +++ ** The optional argument BUFFER of function file-local-copy has been