diff options
| author | Sam Steingold | 2000-05-22 18:15:56 +0000 |
|---|---|---|
| committer | Sam Steingold | 2000-05-22 18:15:56 +0000 |
| commit | 0e8c11d82152d20caae80aa6a36cab4d1fdcaabd (patch) | |
| tree | a030744d6a459fee387efcba4b06f9ce40677185 | |
| parent | d903239064e28af26e1ec143163e7f2e062dc46c (diff) | |
| download | emacs-0e8c11d82152d20caae80aa6a36cab4d1fdcaabd.tar.gz emacs-0e8c11d82152d20caae80aa6a36cab4d1fdcaabd.zip | |
(Info-fontify-node): fixed the call to add-text-properties
| -rw-r--r-- | lisp/ChangeLog | 15 | ||||
| -rw-r--r-- | lisp/info.el | 2 |
2 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b36dbedebfa..1b8ff6bc055 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-05-22 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * info.el (Info-fontify-node): fixed the call to | ||
| 4 | `add-text-properties' (bug introduced on 2000-05-18). | ||
| 5 | |||
| 1 | 2000-05-22 Dave Love <fx@gnu.org> | 6 | 2000-05-22 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * bindings.el: Remove debug-ignored-errors set in other files. | 8 | * bindings.el: Remove debug-ignored-errors set in other files. |
| @@ -12,9 +17,9 @@ | |||
| 12 | quote keywords. | 17 | quote keywords. |
| 13 | (cmpl-string-case-type): Use character classes. | 18 | (cmpl-string-case-type): Use character classes. |
| 14 | 19 | ||
| 15 | * comint.el: | 20 | * comint.el: |
| 16 | * textmodes/ispell.el: | 21 | * textmodes/ispell.el: |
| 17 | * imenu.el: | 22 | * imenu.el: |
| 18 | * mail/mh-e.el: | 23 | * mail/mh-e.el: |
| 19 | * progmodes/compile.el: Add to debug-ignored-errors. | 24 | * progmodes/compile.el: Add to debug-ignored-errors. |
| 20 | 25 | ||
| @@ -159,7 +164,7 @@ | |||
| 159 | * msb.el (msb-menu-cond): Add choice `user'. | 164 | * msb.el (msb-menu-cond): Add choice `user'. |
| 160 | 165 | ||
| 161 | 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> | 166 | 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
| 162 | 167 | ||
| 163 | * ps-print.el: Compatibility, customization and doc fix. | 168 | * ps-print.el: Compatibility, customization and doc fix. |
| 164 | (ps-printer-name-option): Replace defconst by defvar. | 169 | (ps-printer-name-option): Replace defconst by defvar. |
| 165 | (ps-postscript-code-directory): XEmacs compatibility. | 170 | (ps-postscript-code-directory): XEmacs compatibility. |
| @@ -394,7 +399,7 @@ | |||
| 394 | area. | 399 | area. |
| 395 | (syntax-code-table): Format changed. | 400 | (syntax-code-table): Format changed. |
| 396 | (string-to-syntax): Adjusted for the above change. | 401 | (string-to-syntax): Adjusted for the above change. |
| 397 | 402 | ||
| 398 | 2000-05-12 Stefan Monnier <monnier@cs.yale.edu> | 403 | 2000-05-12 Stefan Monnier <monnier@cs.yale.edu> |
| 399 | 404 | ||
| 400 | * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode. | 405 | * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode. |
diff --git a/lisp/info.el b/lisp/info.el index 01409b7d9f2..8b4efe5887a 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -2299,7 +2299,7 @@ The alist key is the character the title is underlined with (?*, ?= or ?-)." | |||
| 2299 | ;; on frames that can display the font above. | 2299 | ;; on frames that can display the font above. |
| 2300 | (if (memq (framep (selected-frame)) '(x pc w32)) | 2300 | (if (memq (framep (selected-frame)) '(x pc w32)) |
| 2301 | (add-text-properties (match-end 1) (match-end 2) | 2301 | (add-text-properties (match-end 1) (match-end 2) |
| 2302 | 'invisible t 'intangible t))) | 2302 | '(invisible t intangible t)))) |
| 2303 | (goto-char (point-min)) | 2303 | (goto-char (point-min)) |
| 2304 | (while (re-search-forward "\\*Note[ \n\t]+\\([^:]*\\):" nil t) | 2304 | (while (re-search-forward "\\*Note[ \n\t]+\\([^:]*\\):" nil t) |
| 2305 | (if (= (char-after (1- (match-beginning 0))) ?\") ; hack | 2305 | (if (= (char-after (1- (match-beginning 0))) ?\") ; hack |