diff options
| author | Chong Yidong | 2009-10-17 04:18:31 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-10-17 04:18:31 +0000 |
| commit | 67d3ffe4989e99079a69e1f7358b758c14cb519a (patch) | |
| tree | ef5228be15780a5eae1d81245c0b136e1101e123 /lisp/ChangeLog | |
| parent | 2df48a87291564f460b159f94f622f88f6c40bfb (diff) | |
| download | emacs-67d3ffe4989e99079a69e1f7358b758c14cb519a.tar.gz emacs-67d3ffe4989e99079a69e1f7358b758c14cb519a.zip | |
* cedet/srecode/srt.el:
* cedet/srecode/compile.el:
* cedet/semantic/mru-bookmark.el:
* cedet/semantic/debug.el:
* cedet/semantic/complete.el:
* cedet/semantic/analyze.el: Require CL when compiling.
* cedet/semantic/scope.el
(semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
tmpscope so that the regular scope will continue to work.
* cedet/semantic/idle.el (semantic-idle-tag-highlight): Use
semantic-idle-summary-highlight-face as the highlighting.
* emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
contains multibyte characters, choose first applicable coding
system automatically.
* cedet/ede/project-am.el (project-run-target): New method.
(project-run-target): New method.
* cedet/ede.el (ede-target): Add run target menu item.
(ede-project, ede-minor-keymap): Add ede-run-target binding.
(ede-run-target): New function.
(ede-target::project-run-target): New method.
* cedet/ede/proj.el (project-run-target): New method.
* cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
(ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
Add :rules.
(ede-proj-target-makefile-shared-object): Only libtool compilers
now available. Add linkers for libtool.
(ede-cc-linker-libtool, ede-g++-linker-libtool): New.
(ede-proj-makefile-target-name): Always use .la extension.
* cedet/ede/proj-prog.el (project-run-target): New method.
* cedet/ede/proj-obj.el (ede-cc-linker): Rename from
ede-gcc-linker.
(ede-g++-linker): Change Change link lines.
* cedet/ede/pmake.el (ede-pmake-insert-variable-shared): When
searching for old variables, go to the end of the buffer and
search backward from there.
(ede-proj-makefile-automake-insert-subdirs)
(ede-proj-makefile-automake-insert-extradist): New methods.
(ede-proj-makefile-create): Use them.
* cedet/ede/pconf.el (ede-proj-configure-test-required-file):
Force FILE to expand to the current target. Use file-exists-p to
check that it exists.
* cedet/ede/linux.el (ede-linux-version): Don't call "head".
(ede-linux-load): Wrap dir in file-name-as-directory. Set
:version slot.
* cedet/ede/files.el (ede-get-locator-object): When enabling
locate, do so on "top".
* cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
file-name-as-directory during compare.
(ede-emacs-version): Return Emacs/XEmacs differentiator. Get
version number from different places. Don't call egrep.
(ede-emacs-load): Set :version slot. Call file-name-as-directory
to set the directory.
* cedet/ede/shell.el: New file.
* cedet/inversion.el (inversion-decoders): Allow for stray . in
alpha/beta variants.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0fcfead46e3..bb119085989 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,79 @@ | |||
| 1 | 2009-10-17 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * cedet/srecode/srt.el: | ||
| 4 | * cedet/srecode/compile.el: | ||
| 5 | * cedet/semantic/mru-bookmark.el: | ||
| 6 | * cedet/semantic/debug.el: | ||
| 7 | * cedet/semantic/complete.el: | ||
| 8 | * cedet/semantic/analyze.el: Require CL when compiling. | ||
| 9 | |||
| 10 | 2009-10-17 Eric Ludlam <zappo@gnu.org> | ||
| 11 | |||
| 12 | * cedet/semantic/scope.el | ||
| 13 | (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of | ||
| 14 | tmpscope so that the regular scope will continue to work. | ||
| 15 | |||
| 16 | * cedet/semantic/idle.el (semantic-idle-tag-highlight): Use | ||
| 17 | semantic-idle-summary-highlight-face as the highlighting. | ||
| 18 | |||
| 19 | * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer | ||
| 20 | contains multibyte characters, choose first applicable coding | ||
| 21 | system automatically. | ||
| 22 | |||
| 23 | * cedet/ede/project-am.el (project-run-target): New method. | ||
| 24 | (project-run-target): New method. | ||
| 25 | |||
| 26 | * cedet/ede.el (ede-target): Add run target menu item. | ||
| 27 | (ede-project, ede-minor-keymap): Add ede-run-target binding. | ||
| 28 | (ede-run-target): New function. | ||
| 29 | (ede-target::project-run-target): New method. | ||
| 30 | |||
| 31 | * cedet/ede/proj.el (project-run-target): New method. | ||
| 32 | |||
| 33 | * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler) | ||
| 34 | (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS. | ||
| 35 | Add :rules. | ||
| 36 | (ede-proj-target-makefile-shared-object): Only libtool compilers | ||
| 37 | now available. Add linkers for libtool. | ||
| 38 | (ede-cc-linker-libtool, ede-g++-linker-libtool): New. | ||
| 39 | (ede-proj-makefile-target-name): Always use .la extension. | ||
| 40 | |||
| 41 | * cedet/ede/proj-prog.el (project-run-target): New method. | ||
| 42 | |||
| 43 | * cedet/ede/proj-obj.el (ede-cc-linker): Rename from | ||
| 44 | ede-gcc-linker. | ||
| 45 | (ede-g++-linker): Change Change link lines. | ||
| 46 | |||
| 47 | * cedet/ede/pmake.el (ede-pmake-insert-variable-shared): When | ||
| 48 | searching for old variables, go to the end of the buffer and | ||
| 49 | search backward from there. | ||
| 50 | (ede-proj-makefile-automake-insert-subdirs) | ||
| 51 | (ede-proj-makefile-automake-insert-extradist): New methods. | ||
| 52 | (ede-proj-makefile-create): Use them. | ||
| 53 | |||
| 54 | * cedet/ede/pconf.el (ede-proj-configure-test-required-file): | ||
| 55 | Force FILE to expand to the current target. Use file-exists-p to | ||
| 56 | check that it exists. | ||
| 57 | |||
| 58 | * cedet/ede/linux.el (ede-linux-version): Don't call "head". | ||
| 59 | (ede-linux-load): Wrap dir in file-name-as-directory. Set | ||
| 60 | :version slot. | ||
| 61 | |||
| 62 | * cedet/ede/files.el (ede-get-locator-object): When enabling | ||
| 63 | locate, do so on "top". | ||
| 64 | |||
| 65 | * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in | ||
| 66 | file-name-as-directory during compare. | ||
| 67 | (ede-emacs-version): Return Emacs/XEmacs differentiator. Get | ||
| 68 | version number from different places. Don't call egrep. | ||
| 69 | (ede-emacs-load): Set :version slot. Call file-name-as-directory | ||
| 70 | to set the directory. | ||
| 71 | |||
| 72 | * cedet/ede/shell.el: New file. | ||
| 73 | |||
| 74 | * cedet/inversion.el (inversion-decoders): Allow for stray . in | ||
| 75 | alpha/beta variants. | ||
| 76 | |||
| 1 | 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca> | 77 | 2009-10-17 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 78 | ||
| 3 | * international/mule-cmds.el (select-safe-coding-system): If the file | 79 | * international/mule-cmds.el (select-safe-coding-system): If the file |