diff options
| author | Chong Yidong | 2009-09-26 18:23:56 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-09-26 18:23:56 +0000 |
| commit | 7cf918c6f2919b18b23ec9ae4631ee8826f95d3a (patch) | |
| tree | 1aeaebe1a694c55ee0d032a864b97560f6733ae9 /lisp | |
| parent | 57f4d2f89c3891006aaeee25a300d3226692372f (diff) | |
| download | emacs-7cf918c6f2919b18b23ec9ae4631ee8826f95d3a.tar.gz emacs-7cf918c6f2919b18b23ec9ae4631ee8826f95d3a.zip | |
* cedet/semantic/util-modes.el
(semantic-show-parser-state-mode-setup): Use new hook names.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cedet/semantic/util-modes.el | 12 |
2 files changed, 7 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6ecba8b0956..aa30f23dad1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -27,10 +27,6 @@ | |||
| 27 | Use semantic-init-hook instead of obsolete alias | 27 | Use semantic-init-hook instead of obsolete alias |
| 28 | semantic-init-hooks. | 28 | semantic-init-hooks. |
| 29 | 29 | ||
| 30 | * cedet/semantic/db-file.el (semanticdb-save-database-hook): | ||
| 31 | Rename from semanticdb-save-database-hooks. Make old name an | ||
| 32 | obsolete alias. | ||
| 33 | |||
| 34 | * cedet/semantic/decorate/mode.el | 30 | * cedet/semantic/decorate/mode.el |
| 35 | (semantic-decorate-pending-decoration-hook): Rename from | 31 | (semantic-decorate-pending-decoration-hook): Rename from |
| 36 | semantic-decorate-pending-decoration-hooks. Make old name an | 32 | semantic-decorate-pending-decoration-hooks. Make old name an |
| @@ -52,6 +48,7 @@ | |||
| 52 | * cedet/semantic/util-modes.el (semantic-mode-line-update) | 48 | * cedet/semantic/util-modes.el (semantic-mode-line-update) |
| 53 | (semantic-toggle-minor-mode-globally): Use semantic-init-hook | 49 | (semantic-toggle-minor-mode-globally): Use semantic-init-hook |
| 54 | instead of obsolete alias semantic-init-hooks. | 50 | instead of obsolete alias semantic-init-hooks. |
| 51 | (semantic-show-parser-state-mode-setup): Use new hook names. | ||
| 55 | 52 | ||
| 56 | 2009-09-26 Chong Yidong <cyd@stupidchicken.com> | 53 | 2009-09-26 Chong Yidong <cyd@stupidchicken.com> |
| 57 | 54 | ||
diff --git a/lisp/cedet/semantic/util-modes.el b/lisp/cedet/semantic/util-modes.el index b0d08210c29..1fbdfc8a934 100644 --- a/lisp/cedet/semantic/util-modes.el +++ b/lisp/cedet/semantic/util-modes.el | |||
| @@ -612,11 +612,11 @@ minor mode is enabled." | |||
| 612 | (add-hook 'semantic-after-auto-parse-hooks | 612 | (add-hook 'semantic-after-auto-parse-hooks |
| 613 | 'semantic-show-parser-state-marker nil t) | 613 | 'semantic-show-parser-state-marker nil t) |
| 614 | 614 | ||
| 615 | (semantic-make-local-hook 'semantic-before-idle-scheduler-reparse-hooks) | 615 | (semantic-make-local-hook 'semantic-before-idle-scheduler-reparse-hook) |
| 616 | (add-hook 'semantic-before-idle-scheduler-reparse-hooks | 616 | (add-hook 'semantic-before-idle-scheduler-reparse-hook |
| 617 | 'semantic-show-parser-state-auto-marker nil t) | 617 | 'semantic-show-parser-state-auto-marker nil t) |
| 618 | (semantic-make-local-hook 'semantic-after-idle-scheduler-reparse-hooks) | 618 | (semantic-make-local-hook 'semantic-after-idle-scheduler-reparse-hook) |
| 619 | (add-hook 'semantic-after-idle-scheduler-reparse-hooks | 619 | (add-hook 'semantic-after-idle-scheduler-reparse-hook |
| 620 | 'semantic-show-parser-state-marker nil t) | 620 | 'semantic-show-parser-state-marker nil t) |
| 621 | ) | 621 | ) |
| 622 | ;; Remove parts of mode line | 622 | ;; Remove parts of mode line |
| @@ -637,9 +637,9 @@ minor mode is enabled." | |||
| 637 | (remove-hook 'semantic-after-auto-parse-hooks | 637 | (remove-hook 'semantic-after-auto-parse-hooks |
| 638 | 'semantic-show-parser-state-marker t) | 638 | 'semantic-show-parser-state-marker t) |
| 639 | 639 | ||
| 640 | (remove-hook 'semantic-before-idle-scheduler-reparse-hooks | 640 | (remove-hook 'semantic-before-idle-scheduler-reparse-hook |
| 641 | 'semantic-show-parser-state-auto-marker t) | 641 | 'semantic-show-parser-state-auto-marker t) |
| 642 | (remove-hook 'semantic-after-idle-scheduler-reparse-hooks | 642 | (remove-hook 'semantic-after-idle-scheduler-reparse-hook |
| 643 | 'semantic-show-parser-state-marker t) | 643 | 'semantic-show-parser-state-marker t) |
| 644 | ) | 644 | ) |
| 645 | semantic-show-parser-state-mode) | 645 | semantic-show-parser-state-mode) |