diff options
| -rw-r--r-- | etc/NEWS | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 9 |
2 files changed, 10 insertions, 9 deletions
| @@ -351,11 +351,6 @@ print-level, print-length, and debug-on-error based on the | |||
| 351 | customizable variables eval-expression-print-level, | 351 | customizable variables eval-expression-print-level, |
| 352 | eval-expression-print-length, and eval-expression-debug-on-error. | 352 | eval-expression-print-length, and eval-expression-debug-on-error. |
| 353 | 353 | ||
| 354 | ** syntax tables now understand nested comments. | ||
| 355 | To declare a comment syntax as allowing nesting, just add an `n' | ||
| 356 | modifier to either of the characters of the comment end and the comment | ||
| 357 | start 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. | |||
| 486 | When you add a new item, please add it without either +++ or --- | 481 | When you add a new item, please add it without either +++ or --- |
| 487 | so I will know I still need to look at it -- rms. | 482 | so I will know I still need to look at it -- rms. |
| 488 | 483 | ||
| 484 | ** syntax tables now understand nested comments. | ||
| 485 | To declare a comment syntax as allowing nesting, just add an `n' | ||
| 486 | modifier to either of the characters of the comment end and the comment | ||
| 487 | start 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' |
| 490 | because `bitmap' is more in line with the usual X terminology. | 490 | because `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 | ||
| 1700 | 1999-08-28 Ken Raeburn <raeburn@gnu.org> | 1701 | 1999-08-28 Ken Raeburn <raeburn@gnu.org> |
| 1701 | 1702 | ||