aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS10
-rw-r--r--src/ChangeLog9
2 files changed, 10 insertions, 9 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 090bdf18c7a..c5776a0b57c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -351,11 +351,6 @@ print-level, print-length, and debug-on-error based on the
351customizable variables eval-expression-print-level, 351customizable variables eval-expression-print-level,
352eval-expression-print-length, and eval-expression-debug-on-error. 352eval-expression-print-length, and eval-expression-debug-on-error.
353 353
354** syntax tables now understand nested comments.
355To declare a comment syntax as allowing nesting, just add an `n'
356modifier to either of the characters of the comment end and the comment
357start sequences.
358
359** Dired changes 354** Dired changes
360 355
361*** New variable `dired-recursive-deletes' determines if the delete 356*** New variable `dired-recursive-deletes' determines if the delete
@@ -486,6 +481,11 @@ Note that +++ before an item means the Lisp manual has been updated.
486When you add a new item, please add it without either +++ or --- 481When you add a new item, please add it without either +++ or ---
487so I will know I still need to look at it -- rms. 482so I will know I still need to look at it -- rms.
488 483
484** syntax tables now understand nested comments.
485To declare a comment syntax as allowing nesting, just add an `n'
486modifier to either of the characters of the comment end and the comment
487start sequences.
488
489** The function `pixmap-spec-p' has been renamed `bitmap-spec-p' 489** The function `pixmap-spec-p' has been renamed `bitmap-spec-p'
490because `bitmap' is more in line with the usual X terminology. 490because `bitmap' is more in line with the usual X terminology.
491 491
diff --git a/src/ChangeLog b/src/ChangeLog
index debece57c81..0f1a86f24a8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1692,10 +1692,11 @@
1692 * syntax.h (SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED): 1692 * syntax.h (SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
1693 Add support for nested comments. 1693 Add support for nested comments.
1694 1694
1695 * syntax.c (lisp_parse_state, back_comment, Fmodify_syntax_entry) 1695 * syntax.c (Fforward_comment, scan_lists, scan_sexps_forward):
1696 (Fforward_comment, scan_lists, scan_sexps_forward) 1696 Consolidate the forward comment code into the new `forw_comment'.
1697 (Fparse_partial_sexp): Add support for nested comments. 1697 (forw_comment): New subroutine. Added support for nested comments.
1698 (forw_comment): New subroutine used in them. 1698 (lisp_parse_state, back_comment, Fmodify_syntax_entry)
1699 (Fparse_partial_sexp): Add support for nested comments.
1699 1700
17001999-08-28 Ken Raeburn <raeburn@gnu.org> 17011999-08-28 Ken Raeburn <raeburn@gnu.org>
1701 1702