* lisp/replace.el (occur-engine): Use `add-face-text-property'
[emacs.git] / lisp / cedet / ChangeLog
blob5b80e79a03ecee6bacef06787913fc54fed11ca2
1 2013-12-12  David Engster  <deng@randomsample.de>
3         * semantic/analyze.el
4         (semantic-analyze-find-tag-sequence-default): Always add scope to
5         the local miniscope for each type.  Otherwise, structure tags are
6         not analyzed correctly.  Also, always search the extended
7         miniscope even when not dealing with types.
9         * semantic/ctxt.el (semantic-get-local-variables-default): Also
10         try to parse local variables for buffers which are currently
11         marked as unparseable.  Otherwise, it is often impossible to
12         complete local variables.
14         * semantic/scope.el (semantic-analyze-scoped-types-default): If we
15         cannot find a type in the typecache, also look into the the types
16         we already found.  This is necessary since in C++, a 'using
17         namespace' can be dependend on a previous one.
18         (semantic-completable-tags-from-type): When creating the list of
19         completable types, pull in types which are referenced through
20         'using' statements, and also preserve their filenames.
22         * semanitc/bovine/c.el (semantic/analyze/refs): Require.
23         (semantic-analyze-tag-references): New override.  Mainly copied
24         from the default implementation, but if nothing could be found (or
25         just the tag itself), drop all namespaces from the scope and
26         search again.  This is necessary for implementations which are
27         defined outside of the namespace and only pull those in through
28         'using' statements.
29         (semantic-ctxt-scoped-types): Go through all tags around point and
30         search them for using statements.  In the case for using
31         statements outside of function scope, append them in the correct
32         order instead of using 'cons'.  This is important since using
33         statements may depend on previous ones.
34         (semantic-expand-c-tag-namelist): Do not try to parse struct
35         definitions as default values.  The grammar parser seems to return
36         the point positions slightly differently (as a cons instead of a
37         list).  Also, set parent for typedefs to 'nil'.  It does not
38         really make sense to set a parent class for typedefs, and it can
39         also lead to endless loops when calculating scope.
40         (semantic-c-reconstitute-token): Change handling of function
41         pointers; instead of seeing them as variables, handle them as
42         functions with a 'function-pointer' attribute.  Also, correctly
43         deal with function pointers as function arguments.
44         (semantic-c-reconstitute-function-arglist): New function to parse
45         function pointers inside an argument list.
46         (semantic-format-tag-name): Use 'function-pointer' attribute
47         instead of the old 'functionpointer-flag'.
48         (semantic-cpp-lexer): Use new `semantic-lex-spp-paren-or-list'.
50         * semantic/bovine/gcc.el (semantic-gcc-setup): Add 'features.h' to
51         the list of files whose preprocessor symbols are included.  This
52         pulls in things like __USE_POSIX and similar.
54         * semantic/format.el (semantic-format-tag-prototype-default):
55         Display default values if available.
57         * semantic/analyze/refs.el (semantic-analyze-refs-impl)
58         (semantic-analyze-refs-proto): Add 'default-value' as ignorable in
59         call to `semantic-tag-similar-p'.
61         * semantic/db-mode.el (semanticdb-semantic-init-hook-fcn): Always
62         set buffer for `semanticdb-current-table'.
64         * semantic/db.el (semanticdb-table::semanticdb-refresh-table): The
65         previous change turned up a bug in this method.  Since the current
66         table now correctly has a buffer set, the first clause in the
67         `cond' would be taken, but there was a `save-excursion' missing.
69         * semantic/lex-spp.el (semantic-c-end-of-macro): Declare.
70         (semantic-lex-spp-token-macro-to-macro-stream): Deal with macros
71         which open/close a scope.  For this, leave an overlay if we
72         encounter a single open paren and return a semantic-list in the
73         lexer.  When this list gets expanded, retrieve the old position
74         from the overlay.  See the comments in the function for further
75         details.
76         (semantic-lex-spp-find-closing-macro): New function to find the
77         next macro which closes scope (i.e., has a closing paren).
78         (semantic-lex-spp-replace-or-symbol-or-keyword): Go to end of
79         closing macro if necessary.
80         (semantic-lex-spp-paren-or-list): New lexer to specially deal with
81         parens in macro definitions.
83         * semantic/decorate/mode.el (semantic-decoration-mode): Do not
84         decorate available tags immediately but in an idle timer, since
85         EDE will usually not be activated yet, which will make it
86         impossible to find project includes.
88         * semantic/decorate/include.el
89         (semantic-decoration-on-includes-highlight-default): Remove
90         'unloaded' from throttle when decorating includes, otherwise all
91         would be loaded.  Rename 'table' to 'currenttable' to make things
92         clearer.
94         * ede/linux.el (cl): Require during compile.
96 2013-12-12  Lluís Vilanova  <xscript@gmx.net>
98         * ede/linux.el (project-linux-build-directory-default)
99         (project-linux-architecture-default): Add customizable variables.
100         (ede-linux-project): Add additional slots to track Linux-specific
101         information (out-of-tree build directory and selected
102         architecture).
103         (ede-linux--get-build-directory, ede-linux--get-archs)
104         (ede-linux--detect-architecture, ede-linux--get-architecture)
105         (ede-linux--include-path): Added function to detect Linux-specific
106         information.
107         (ede-linux-load): Set new Linux-specific information when creating
108         a project.
109         (ede-expand-filename-impl): Use new and more accurate include
110         information.
112 2013-12-12  Eric Ludlam  <zappo@gnu.org>
114         * semantic/scope.el (semantic-calculate-scope): Return a clone of
115         the scopecache, so that everyone is working with its own (shallow)
116         copy.  Otherwise, if one caller is resetting the scope, it would
117         be reset for all others working with the scope cache as well.
119 2013-12-12  Alex Ott  <alexott@gmail.com>
121         * ede/generic.el (project-run-target): Remove incorrect require.
123         * semantic/format.el (semantic-format-tag-prototype-default): Use
124         concat only for strings.
126 2013-11-30  Glenn Morris  <rgm@gnu.org>
128         Stop keeping (most) generated cedet grammar files in the repository.
129         * semantic/bovine/grammar.el (bovine--make-parser-1):
130         New function, split from bovine-make-parsers.
131         (bovine-make-parsers): Use bovine--make-parser-1.
132         (bovine-batch-make-parser): New function.
133         * semantic/wisent/grammar.el (wisent--make-parser-1):
134         New function, split from wisent-make-parsers.
135         (wisent-make-parsers): Use wisent--make-parser-1.
136         (wisent-batch-make-parser): New function.
137         * semantic/db.el (semanticdb-save-all-db):
138         Avoid prompting in batch mode.
139         * semantic/grammar.el (semantic-grammar-footer-template):
140         Disable version-control and autoloads in the output.
141         (semantic-grammar-create-package):
142         Add option to return nil if output is up-to-date.
143         * semantic/bovine/c-by.el, semantic/bovine/make-by.el:
144         * semantic/bovine/scm-by.el, semantic/wisent/javat-wy.el:
145         * semantic/wisent/js-wy.el, semantic/wisent/python-wy.el:
146         * srecode/srt-wy.el: Remove generated files from repository.
148 2013-11-16  Barry O'Reilly  <gundaetiapo@gmail.com>
150         * semantic/fw.el (semantic-exit-on-input)
151         (semantic-throw-on-input): Restore point before
152         accept-process-output because timers which redisplay can run.
153         (Bug#15045)
155 2013-11-03  Johan Bockgård  <bojohan@gnu.org>
157         * semantic/lex.el (semantic-lex-start-block)
158         (semantic-lex-end-block): Move after definition of
159         semantic-lex-token macro.
161 2013-10-28  Barry O'Reilly  <gundaetiapo@gmail.com>
163         * semantic/idle.el (semantic-idle-symbol-highlight)
164         (semantic-idle-symbol-highlight-face): Define face with defface
165         and obsolete the replaced one defined with defvar.  (Bug#15745)
166         * pulse.el (pulse-momentary-highlight-overlay)
167         (pulse-momentary-highlight-region): Fix typo in doc
169 2013-10-30  Glenn Morris  <rgm@gnu.org>
171         * semantic/grammar.el (semantic-grammar-mode-keywords-2)
172         (semantic-grammar-mode-keywords-3): Handle renamed font-lock vars.
174 2013-10-20  Johan Bockgård  <bojohan@gnu.org>
176         * semantic/db-mode.el (global-semanticdb-minor-mode):
177         Remove hooks correctly.
178         (semanticdb-toggle-global-mode): Pass `toggle' to minor mode function.
180 2013-09-28  Leo Liu  <sdl.web@gmail.com>
182         * semantic/texi.el (semantic-analyze-possible-completions):
183         Use ispell-lookup-words instead.  (Bug#15460)
185 2013-09-20  Glenn Morris  <rgm@gnu.org>
187         * semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p):
188         Move from here...
189         * semantic/fw.el: ...to here.
191 2013-09-18  Glenn Morris  <rgm@gnu.org>
193         * semantic/find.el (semantic-brute-find-first-tag-by-name):
194         Replace obsolete function assoc-ignore-case with assoc-string.
196         * semantic/complete.el (tooltip-mode, tooltip-frame-parameters)
197         (tooltip-show): Declare.
199 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
201         * semantic/symref/list.el (semantic-symref-results-mode):
202         Use define-derived-mode.
203         (semantic-symref-produce-list-on-results): Set up the results here
204         instead of in semantic-symref-results-mode.  Move after
205         semantic-symref-current-results's defvar now that it refers to that var.
206         (semantic-symref-auto-expand-results)
207         (semantic-symref-results-summary-function)
208         (semantic-symref-results-mode-hook): Remove redundant :group arg.
209         (semantic-symref, semantic-symref-symbol, semantic-symref-regexp):
210         Initialize directly in the let.
212 2013-09-13  Glenn Morris  <rgm@gnu.org>
214         * semantic/ia.el (semantic-ia-complete-symbol-menu):
215         Comment it out, since it cannot work.  (Bug#14522)
217 2013-09-12  Glenn Morris  <rgm@gnu.org>
219         * semantic/find.el (semantic-find-first-tag-by-name):
220         Replace obsolete function assoc-ignore-case with assoc-string.
222 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
224         * semantic/grammar.el (semantic-grammar-mode): Use define-derived-mode.
225         (semantic-grammar-mode-syntax-table): Rename from
226         semantic-grammar-syntax-table.
227         (semantic-grammar-mode-map): Rename from semantic-grammar-map.
228         * data-debug.el (data-debug-mode-map): Rename from data-debug-map.
229         (data-debug-mode): Use define-derived-mode.
231 2013-09-05  Glenn Morris  <rgm@gnu.org>
233         * semantic/fw.el (semantic-make-local-hook):
234         Simplify by dropping Emacs <= 20.
236 2013-07-29  David Engster  <deng@randomsample.de>
238         * lisp/cedet/cedet.el (cedet-packages): Remove speedbar since its
239         development does no longer happens in CEDET upstream but in Emacs
240         proper.  Also remove cedet-contrib and cogre since those are only
241         in upstream.
243         * semantic/analyze/fcn.el (semantic-analyze-type-to-name): If TYPE
244         has a parent, return a fully qualified name.
246         * semantic/decorate/mode.el
247         (semantic-decoration-on-includes-p-default)
248         (semantic-decoration-on-includes-highlight-default): Declare for
249         byte compiler.
251         * semantic/wisent/python.el (semantic/format): New require.
253 2013-07-27  Eric Ludlam  <zappo@gnu.org>
255         * lisp/cedet/semantic/edit.el (semantic-edits-splice-remove):
256         Wrap debug message removing middle tag in semantic-edits-verbose-flag
257         check.
259 2013-07-27  David Engster  <deng@randomsample.de>
261         * semantic/bovine/el.el (semantic/db-el): New require.
263         * semantic/db-el.el (semanticdb-normalize-one-tag): It might be
264         that a symbol comes from a file but cannot be found in its table.
265         This happens for instance when a symbol was dynamically created
266         through a macro like `defstruct'.  In this case, return the
267         original tag.
268         (semanticdb-elisp-sym->tag): Deal with autoloaded functions, where
269         the argument list is not available until the file is loaded.
271 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
273         * data-debug.el, cedet-idutils.el: Neuter the "Version:" header.
275 2013-06-19  Glenn Morris  <rgm@gnu.org>
277         * semantic/idle.el (define-semantic-idle-service):
278         No need to use eval-and-compile, progn will do.
280         * semantic/decorate/mode.el (define-semantic-decoration-style):
281         Doc fix.
282         (define-semantic-decoration-style): 'function is not an accepted
283         value for autoload's "type" argument.  Might as well use the default.
285 2013-06-18  Glenn Morris  <rgm@gnu.org>
287         * semantic/ctxt.el (semantic-ctxt-end-of-symbol-default):
288         Remove unused free variable `symlist'.
290 2013-06-02  Eric Ludlam  <zappo@gnu.org>
292         * semantic/edit.el (semantic-change-function):
293         Use `save-match-data' around running hooks.
295         * semantic/decorate/mode.el
296         (semantic-decorate-style-predicate-default)
297         (semantic-decorate-style-highlighter-default): New.
298         (semantic-decoration-mode): Do not require
299         `semantic/decorate/include' anymore.
300         (semantic-toggle-decoration-style): Error if an unknown decoration
301         style is toggled.
302         (define-semantic-decoration-style): Add new :load option.
303         When :load is specified, add autoload tokens for the definition
304         functions so that code is loaded when the mode is used.
305         (semantic-decoration-on-includes): New autoload definition for
306         highlighting includes.
308         * semantic/bovine/c.el (semantic-lex-c-ifdef): Allow some misc
309         characters to appear after the tested variable.
311         * semantic/ede-grammar.el (project-compile-target): Calculate full
312         src name via ede-expand-filename instead of the crutch of the
313         current buffer.  Enables this target to compile in batch mode.
315         * semantic/idle.el
316         (semantic-idle-symbol-maybe-highlight): Wrap highlighting of
317         remote symbol with `save-excursion'.
318         (semantic-idle-scheduler-work-parse-neighboring-files): Instead of
319         using directory-files on each found mode pattern, collect all the
320         patterns for the current mode, and then for each file, see if it
321         matches any of them.  If it does, parse the file.  (Patch
322         inspiration from Tomasz Gajewski.)
324         * semantic/ctxt.el (semantic-ctxt-end-of-symbol): New.
325         (semantic-ctxt-current-symbol-default): New.
327         * semantic/bovine/el.el (semantic-default-elisp-setup):
328         Add autoload cookie.  Explain existence.
329         (footer): Add local variable for loaddefs.
331         * semantic/db.el (semanticdb-file-table-object): Add new filter,
332         only checking for regular files too.
334         * semantic/wisent/python.el
335         (semantic-format-tag-abbreviate): New override.  Cuts back on size
336         of code tags.
338         * srecode/compile.el (srecode-compile-templates): Fix warning
339         punctuation.  Remove status messages to clean up testing output.
341         * ede/base.el (ede-project-placeholder-cache-file): Update doc to
342         mention 'nil' value.
343         (ede-save-cache): Disable cache save if file is nil.
345         * ede.el (ede-initialize-state-current-buffer): Flush deleted
346         projects.
347         (global-ede-mode): Always append our find-file-hook to the end.
348         (ede-flush-deleted-projects): New command.
350         * ede/cpp-root.el (ede-preprocessor-map): Protect against init
351         problems.
353         * ede/proj.el (ede-proj-target): Add a new "custom" option for
354         custom symbols representing a compiler or linker instead of
355         restricting things to only the predefined compilers and linkers.
357 2013-06-02  David Engster  <dengste@eml.cc>
359         * semantic.el (semantic-mode-map): To avoid showing showing
360         Development menu twice, only disable menu item if menu-bar is
361         actually enabled, otherwise the popup 'global menu' might display
362         a disabled Development menu.
364         * srecode/srt-wy.el: Regenerate.
366 2013-06-02  Pete Beardmore  <elbeardmorez@msn.com>
368         * semantic/complete.el
369         (semantic-displayor-show-request): Fix which slot in obj is set to
370         the max tags.
372 2013-06-01  Glenn Morris  <rgm@gnu.org>
374         * semantic/grammar.el (semantic-grammar-complete):
375         Replace the obsolete function lisp-complete-symbol.
377         * semantic/analyze/fcn.el (semantic-tag-similar-p): Autoload.
379         * srecode/args.el, srecode/java.el: Require ede.
381         * semantic/lex.el (semantic-lex-make-type-table): Fix transposed args.
383 2013-05-24  Glenn Morris  <rgm@gnu.org>
385         * semantic/bovine/grammar.el (bovine-make-parsers):
386         Avoid free variable `copyright-end'.
388         * semantic/bovine/c-by.el (semantic-parse-region):
389         * semantic/wisent/javat-wy.el (semantic-parse-region):
390         * semantic/wisent/js-wy.el (semantic-parse-region):
391         * semantic/wisent/python-wy.el (semantic-parse-region): Declare.
393 2013-05-22  Glenn Morris  <rgm@gnu.org>
395         * ede/speedbar.el (ede-file-find, ede-tag-find):
396         * semantic/sb.el (semantic-sb-token-jump):
397         Use dframe-maybee-jump-to-attached-frame rather than speedbar- alias.
399 2013-05-15  Glenn Morris  <rgm@gnu.org>
401         * semantic/symref/list.el (semantic-symref-auto-expand-results)
402         (semantic-symref-results-mode-hook)
403         (semantic-symref-results-summary-function): Fix :group.
405 2013-05-14  Glenn Morris  <rgm@gnu.org>
407         * ede/simple.el, semantic/java.el: Set generated-autoload-load-name.
409 2013-05-11  Glenn Morris  <rgm@gnu.org>
411         * ede/project-am.el, semantic/db-ebrowse.el, semantic/grammar.el:
412         * semantic/sb.el, semantic/bovine/grammar.el, semantic/wisent/comp.el:
413         * semantic/wisent/grammar.el, semantic/wisent/wisent.el:
414         * srecode/fields.el: Set generated-autoload-load-name (for cus-load).
416         * ede/locate.el (cedet-cscope-version-check)
417         (cedet-cscope-support-for-directory):
418         * semantic/grammar.el (semantic-grammar-wy--install-parser):
419         Fix declarations.
421         * ede/project-am.el (project-am-compile-project-command): Fix :type.
423 2013-05-09  Glenn Morris  <rgm@gnu.org>
425         * semantic/db-find.el (semanticdb-find-throttle-custom-list):
426         Fix value.
428 2013-04-27  David Engster  <deng@randomsample.de>
430         * semantic/complete.el
431         (semantic-collector-calculate-completions-raw):
432         If `completionslist' is not set, refresh the cache if necessary and
433         use it for completions.  This fixes the
434         `semantic-collector-buffer-deep' collector (bug#14265).
436 2013-03-26  Leo Liu  <sdl.web@gmail.com>
438         * semantic/senator.el (senator-copy-tag-to-register):
439         Move register handling logic from register.el.  (Bug#14052)
441 2013-03-21  Eric Ludlam  <zappo@gnu.org>
443         * semantic.el (navigate-menu): Yank Tag :enable. Make sure
444         `senator-tag-ring' is bound.
445         (semantic-parse-region-default): Stop reversing the output of
446         parse-whole-stream.
447         (semantic-repeat-parse-whole-stream): Append returned tags
448         differently, so they come out in the right order.
450         * semantic/sb.el (semantic-sb-filter-tags-of-class): New option.
451         (semantic-sb-fetch-tag-table): Filter tags being bucketed to
452         exclude tags belonging to above filtered classes.
454         * semantic/find.el (semantic-filter-tags-by-class): New function.
456         * semantic/tag-ls.el (semantic-tag-similar-p-default):
457         Add short-circuit in case tag1 and 2 are identical.
459         * semantic/analyze/fcn.el
460         (semantic-analyze-dereference-metatype-stack):
461         Use `semantic-tag-similar-p' instead of 'eq' when comparing two tags
462         during metatype evaluation in case they are the same, but not the
463         same node.  (Tweaked patch from Tomasz Gajewski) (Tiny change)
465         * semantic/db-find.el (semanticdb-partial-synchronize):
466         Fix require to semantic/db-typecache to be correct.
467         (semanticdb-find-tags-external-children-of-type): Make this a
468         brutish search by default.
470         * semantic/sort.el
471         (semantic-tag-external-member-children-default): When calling
472         `semanticdb-find-tags-external-children-of-type', pass in the
473         input tag as the place to start searching for externally defined
474         methods.
476         * semantic/db-file.el (semanticdb-default-save-directory):
477         Doc fix: Add ref to default value.
479         * semantic/complete.el (semantic-complete-post-command-hook):
480         When detecting if cursor is outside completion area, do so if cursor
481         moves before start of overlay, or the original starting location
482         of the overlay (i.e., if user deletes past beginning of the
483         overlay region).
484         (semantic-complete-inline-tag-engine): Initialize original start
485         of `semantic-complete-inline-overlay'.
487         * semantic/bovine/c.el (semantic-c-describe-environment):
488         Update some section titles.  Test semanticdb table before printing it.
489         (semantic-c-reset-preprocessor-symbol-map): Update
490         `semantic-lex-spp-macro-symbol-obarray' outside the loop over all
491         the files contributing to its value.
492         (semantic-c-describe-environment): If there is an EDE project but
493         no spp symbols from it, say so.
495         * srecode/args.el (srecode-semantic-handle-:project): New argument
496         handler.  Provide variable values if not in an EDE project.
498         * srecode/srt-mode.el (srecode-template-mode): Fix typo on srecode
499         name.
501         * srecode/cpp.el (srecode-semantic-handle-:c): Replace all
502         characters in FILENAME_SYMBOL that aren't valid CPP symbol chars.
504         * srecode/map.el (srecode-map-validate-file-for-mode):
505         Force semantic to load if it is not active in the template being added
506         to the map.
508         * srecode/srt.el: Add local variables for setting the autoload
509         file name.
510         (srecode-semantic-handle-:srt): New autoload cookie.
512         * ede.el (ede-apply-preprocessor-map): Apply map to
513         `semantic-lex-spp-project-macro-symbol-obarray' instead of the
514         system one.  Add require for semantic.
516         * ede/proj-elisp.el (ede-update-version-in-source): In case a file
517         has both a version variable and a Version: comment, always use
518         `call-next-method'.
520         * ede/cpp-root.el (ede-set-project-variables): Delete.
521         `ede-preprocessor-map' does the job this function was attempting
522         to do with :spp-table.
523         (ede-preprocessor-map): Update file tests to provide better
524         messages.  Do not try to get symbols from a file that is the file
525         in the current buffer.
527         * ede/base.el (ede-project-placeholder): Add more documentation to
528         :file slot.
529         (ede-load-cache): Use `insert-file-contents' instead of
530         `find-file-noselect' in order to avoid activating other tools.
532 2013-03-21  David Engster  <deng@randomsample.de>
534         * semantic/bovine/c.el (semantic-get-local-variables): Also add a
535         new variable 'this' if we are in an inline member function.
536         For detecting this, we check overlays at point if there is a class
537         spanning the current function.  Also, the variable 'this' has to
538         be a pointer.
540         * semantic/bovine/gcc.el (semantic-gcc-setup): Fail gracefully
541         when querying g++ for defines returns an error.
543         * srecode/srt-mode.el:
544         * srecode/compile.el:
545         * semantic/elp.el:
546         * semantic/db-el.el:
547         * semantic/complete.el:
548         * ede.el:
549         * cogre.el:
550         * srecode/table.el:
551         * srecode/mode.el:
552         * srecode/insert.el:
553         * srecode/compile.el:
554         * semantic/decorate/include.el:
555         * semantic/db.el:
556         * semantic/adebug.el:
557         * ede/auto.el:
558         * srecode/dictionary.el:
559         * semantic/ede-grammar.el:
560         * semantic/db.el:
561         * semantic/db-find.el:
562         * semantic/db-file.el:
563         * semantic/complete.el:
564         * semantic/bovine/c.el:
565         * semantic/analyze.el:
566         * ede/util.el:
567         * ede/proj.el:
568         * ede/proj-elisp.el:
569         * ede/pconf.el:
570         * ede/locate.el:
571         * ede.el: Adapt to EIEIO namespace cleanup: Rename `object-name'
572         to `eieio-object-name', `object-set-name-string' to
573         `eieio-object-set-name-string', `object-class' to
574         `eieio-object-class', `class-parent' to `eieio-class-parent',
575         `class-parents' to `eieio-class-parents', `class-children' to
576         `eieio-class-children', `object-name-string' to
577         `eieio-object-name-string', `object-class-fast' to
578         `eieio--object-class'.  Also replace direct access with new
579         accessor functions.
581 2013-03-21  Tomasz Gajewski  <tomga@wp.pl>  (tiny change)
583         * ede/cpp-root.el (ede-project-autoload, initialize-instance):
584         Fix EDE file symbol to match rename.  Fix ede-cpp-root symbol to
585         include -project in name.
587 2013-03-21  Alex Ott  <alexott@gmail.com>
589         * cedet-files.el (cedet-files-list-recursively): New.
590         Recursively find files whose names are matching to given regex.
592         * ede.el (ede-current-project): Rewrite to avoid imperative style.
594         * ede/files.el (ede-find-file): Simplify code.
596         * ede/base.el (ede-normalize-file/directory): Add function to
597         normalize :file or :directory slots if they are missing.
599         * ede/cpp-root.el (ede-cpp-root-project): Add compile-command
600         slot.
601         (project-compile-project): Compiles project using value specified
602         in :compule-command slot or in compile-command local variable.
603         Value of slot or local variable could be string or function that
604         receives project and should return string that will be invoked as
605         command.
606         (project-compile-target): Invokes compilation of whole project.
608         * ede/files.el (ede-find-project-root): New function to
609         find root of project that contains specific file.
610         (ede-files-find-existing): New function which checks presence of
611         given directory in the list of registered projects.
613 2013-03-04  Paul Eggert  <eggert@cs.ucla.edu>
615         * semantic/wisent/wisent.el (wisent): Stick to ASCII in the ASCII art.
617         * semantic/wisent/javat-wy.el: Regenerate.
619 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
621         * semantic/fw.el (semantic-make-local-hook, semantic-mode-line-update):
622         Simplify via CSE.
624 2012-11-16  David Engster  <deng@randomsample.de>
626         * semantic/symref/list.el (semantic-symref-symbol):
627         Use `semantic-complete-read-tag-project' instead of
628         `semantic-complete-read-tag-buffer-deep', since the latter is not
629         working correctly.
631         * semantic/symref.el (semantic-symref-result-get-tags):
632         Use `find-buffer-visiting' to follow symbolic links.
634         * semantic/fw.el (semantic-find-file-noselect): Always set
635         `enable-local-variables' to `:safe' when loading files.
637 2012-11-16  Glenn Morris  <rgm@gnu.org>
639         * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
640         * semantic/util.el (semantic-describe-buffer):
641         * semantic/bovine/c.el (semantic-c-parse-lexical-token)
642         (semantic-default-c-setup):
643         Use new names for hooks rather than obsolete aliases.
645 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
647         * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
648         * semantic/grammar.el (semantic-grammar-mode):
649         * semantic/util-modes.el (semantic-highlight-edits-mode)
650         (semantic-show-parser-state-mode): Avoid obsolete name
651         semantic-edits-new-change-hooks (bug#12869).
653 2012-11-13  Glenn Morris  <rgm@gnu.org>
655         * srecode/srt-mode.el (srecode-template-mode):
656         Don't change global values of comment-start, comment-end.  (Bug#12781)
658 2012-10-25  David Engster  <deng@randomsample.de>
660         * semantic/analyze.el (semantic-analyze-dereference-alias):
661         New function to dereference aliases.
662         (semantic-analyze-current-context-default): Use it.
664         * semantic/grammar.el (semantic-grammar-create-package):
665         * srecode/compile.el (srecode-compile-templates): Throw a proper
666         error if semantic-mode is not enabled (bug#9968).
668         Compiler warning fixes:
670         * semantic.el (semantic-elapsed-time): Make it a defsubst.
672         * srecode/dictionary.el (srecode-adebug-dictionary):
673         Remove require for `semantic'.
675         * srecode/map.el:
676         * srecode/insert.el: Declare functions from `data-debug'.
678         * semantic/grammar.el: Require `help-fns'.  Declare functions from
679         `eldoc', which is required in function body.
681         * srecode/java.el:
682         * semantic/texi.el:
683         * semantic/grammar-wy.el:
684         * semantic/db-file.el:
685         * semantic/db-el.el:
686         * semantic/chart.el: Fix requires.
688         * ede/locate.el: Remove useless requires.  Declare functions
689         instead and require in functions when needed.
691 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
693         * semantic/db-file.el (semanticdb-save-database-functions):
694         * semantic/lex.el (semantic-lex-reset-functions):
695         * semantic/edit.el (semantic-change-functions)
696         (semantic-edits-new-change-functions)
697         (semantic-edits-delete-change-functions)
698         (semantic-edits-reparse-change-functions): Don't use "-hooks" suffix.
700 2012-10-14  David Engster  <deng@randomsample.de>
702         * semantic.el (semantic-error-if-unparsed): New function.
703         Raise error if buffer was not parsed by Semantic (bug #12045).
704         (navigate-menu, edit-menu, cedet-menu-map): Enable Semantic items
705         only if buffer was parsed.  Also, replace ':active' with ':enable'
706         where necessary.
708         * semantic/wisent/python.el
709         (semantic-python-get-system-include-path):
710         Use `python-shell-internal-send-string' if available to query Python
711         for system paths.
713         * semantic/senator.el (senator-next-tag, senator-previous-tag)
714         (senator-go-to-up-reference): Use `semantic-error-if-unparsed'.
716         * semantic/complete.el (semantic-complete-jump-local)
717         (semantic-complete-jump, semantic-complete-jump-local-members)
718         (semantic-complete-self-insert): Use `semantic-error-if-unparsed'.
719         (semantic-complete-inline-project): Fix autoload cookie.
721         * semantic/analyze/complete.el
722         (semantic-analyze-possible-completions): Check if buffer was
723         parsed.  Only raise an error if function was called interactively,
724         otherwise silently return nil.
726         * cedet.el (cedet-menu-map): Fix copy&paste typo in menu creation.
728 2012-10-08  David Engster  <deng@randomsample.de>
730         * semantic/bovine/el.el: Add `semantic-default-elisp-setup' to
731         `emacs-lisp-mode-hook'.  This was accidentally removed during the
732         CEDET update (2012-10-01T18:10:29Z!cyd@gnu.org).
734 2012-10-07  David Engster  <deng@randomsample.de>
736         * semantic/wisent/python.el (semantic-ctxt-current-function)
737         (semantic-ctxt-current-assignment): New overrides, simply
738         returning nil.  The defaults do not work correctly and can send
739         the parser in an infinite loop (bug#12458).
741         * semantic/ede-grammar.el (project-compile-target): Fix grammar
742         compilation after introduction of %provide statement.
744         * semantic.el (semantic-new-buffer-setup-functions): Remove setup
745         function for `f90-mode', since the parser only exists upstream.
747 2012-10-06  Glenn Morris  <rgm@gnu.org>
749         * semantic/complete.el (semantic-displayor-tooltip-max-tags): Doc fix.
751         * semantic/complete.el (semantic-displayor-tooltip-mode)
752         (semantic-displayor-tooltip-initial-max-tags)
753         (semantic-displayor-tooltip-max-tags): Add missing custom :version tags.
754         * ede/linux.el (project-linux): Add missing group :version tag.
756 2012-10-06  Chong Yidong  <cyd@gnu.org>
758         * semantic/bovine/grammar.el:
759         * semantic/wisent/grammar.el: Move from admin/grammars.
760         Add autoloads for bovine-grammar-mode and wisent-grammar-mode.
762 2012-10-02  Chong Yidong  <cyd@gnu.org>
764         * srecode.el, ede.el: Restore Version header.
766 2012-10-01  Chong Yidong  <cyd@gnu.org>
768         * semantic/bovine/c-by.el: Regenerate.
769         * semantic/bovine/make-by.el:
770         * semantic/bovine/scm-by.el:
771         * semantic/grammar-wy.el:
772         * semantic/wisent/javat-wy.el:
773         * semantic/wisent/js-wy.el:
774         * srecode/srt-wy.el:
776 2012-10-01  Eric Ludlam  <zappo@gnu.org>
778         * cedet.el (cedet-version, cedet-packages): Update.
780         * cedet-global.el (cedet-gnu-global-version-check): Support newer
781         versions that have extra (parens) in the version string.
783         * cedet-idutils.el (cedet-idutils-version-check): Make sure a
784         version number was found before calling inversion-check-version.
786         * data-debug.el (data-debug-insert-thing): Bind inhibit-read-only
787         while inserting the thing, then clear modified bit.
788         (data-debug-map): Suppress the keymap.
789         (data-debug-mode, data-debug-new-buffer): Make buffer read-only.
790         (data-debug-contract-current-line): Inhibit read-only, then clear
791         modified bit.
793         * ede.el (ede-buffer-belongs-to-project-p): Use ede-object-project
794         to allow use in more kinds of buffers.
795         (ede-project-forms-menu): Add `Default configuration' menu item.
796         (ede-configuration-forms-menu): New, for use in above.
797         (ede-project-configurations-set): New command used from menu.
798         (ede-java-classpath): New conveninece for Java support.
799         (ede-apply-object-keymap): Combine keybindings from the project
800         and the target, not just whatever is local to the buffer.
801         (ede-apply-target-options): Call fcn to apply project local
802         variables.
803         (ede-reset-all-buffers): Remove arg.
804         (ede, ede-rescan-toplevel): Callers changed.
805         (ede-new-target): Fix bug where you couldn't call this from Dired.
806         (ede-add-file): Replace assignment of ede-object with generic call
807         to re-init the buffer.
808         (ede-find-target): If ede-object is set, run short-cut code
809         instead of `or' shortcut.
810         (ede-project-buffers): Return buffers belonging to input project,
811         not any buffer belonging to any project.
812         (ede-system-include-path, ede-apply-project-local-variables)
813         (ede-set-project-local-variable): New functions.
814         (ede-make-project-local-variable): Apply to toplevel if none
815         specified.
816         (ede-set): Make it interactive.
818         * ede/auto.el (ede-project-autoload): New class.
819         (ede-do-dirmatch): New method.
820         (ede-project-dirmatch-p): New function.
821         (ede-project-root-directory): Call it.
822         (ede-dir-to-projectfile): Don't call project file function if we
823         didn't match the root.
824         (ede-project-root-directory): Don't call a project's root function
825         if the tool in question isn't installed.
826         (ede-dir-to-projectfile): Don't call project file function if we
827         didn't match the root.
829         * ede/autoconf-edit.el (autoconf-parameter-strip): Remove any
830         trailing `\' mid string, and replace with a space.
831         (autoconf-parameter-count): New function.
832         (autoconf-set-version): Use it.
834         * ede/base.el (ede-project): The :type of targets is now a list of
835         target base classes.
837         * ede/emacs.el (ede-emacs-load): Fix typo.
839         * ede/files.el (ede-flush-project-hash, ede-flush-directory-hash):
840         Protect against missing locator object.
841         (ede-get-locator-object): Protect against missing project.
842         (ede-flush-directory-hash): New command.
843         (ede-get-locator-object): Protect against missing project.
845         * ede/generic.el (ede-generic-config): Add configurable
846         `run-command' slot.
847         (project-compile-project, project-compile-target)
848         (project-debug-target, project-run-target): New methods.
849         (ede-generic-get-configuration): Specify the class to load.
850         (ede-generic-new-autoloader): Use ede-add-project-autoload.
851         (ede-enable-generic-projects): Rename projects so as to never
852         match the edeproject-* projects.
854         * ede/makefile-edit.el (makefile-macro-file-list): Case sensitive
855         searches.  Protect against "SUBDIRS=$(subdirs)" infloop.
857         * ede/proj-elisp.el (ede-proj-tweak-autoconf)
858         (ede-proj-flush-autoconf): Disable local variables when loading
859         the autoconf lisp compile script.
861         * ede/proj.el (ede-proj-target-aux, -elisp, -elisp-autoloads)
862         (-scheme, -makefile-misc, ede-proj-target-makefile-program)
863         (-makefile-archive, -makefile-shared-object)
864         (ede-proj-target-makefile-info, -grammar): New autoloads.
865         (ede-proj-project): Inherit from eieio-persistent-read.
866         Specify extension and header line.
867         (ede-proj-load, ede-proj-save): Replace with impl using
868         eieio-persistent-read.
870         * ede/project-am.el (project-add-file): Use ede-target-parent
871         instead of loading the project file.
873         * semantic.el (semantic-version): Update.
874         (semantic-new-buffer-setup-functions): Add f90-mode, texinfo-mode.
875         (navigate-menu): Add menu item for Stickyfunc mode.
877         * semantic/analyze/debug.el
878         (semantic-analyzer-debug-insert-include-summary):
879         Before dereferencing tableinner, make sure it has a value.
881         * semantic/analyze/refs.el
882         (semantic-analyze-tag-references-default): When doing a lookup,
883         specify noerror.
884         (semantic--analyze-refs-full-lookup): Add optional noerror input
885         argument.  Pass to to full-lookup-simple.
886         (semantic-analyze-refs-impl, semantic-analyze-refs-proto):
887         Ignore :typemodifiers during compare.
889         * semantic/bovine/c.el (semantic-lex-cpp-define): Specify limits
890         to looking back for comment chars.
891         (semantic--tag-similar-names-p, semantic--tag-similar-names-p-default)
892         (semantic--tag-attribute-similar-p): New.
893         (semantic-c-describe-environment): Handle list value of ede-object.
894         (semantic-lex-c-preprocessor-symbol-map-builtin):
895         Add __attribute_pure__.
897         * semantic/bovine/scm.el (semantic-format-tag-prototype):
898         Add parent and color argument.  Pass them through.
900         * semantic/complete.el (semantic-collector-calculate-completions):
901         Search for more matches if new prefix is a substring of old one.
902         (semantic-complete-inline-project): New function.
904         * semantic/db-el.el (object-print): New method.
906         * semantic/db-file.el (semanticdb-load-database): Specify class.
908         * semantic/db-typecache.el
909         (semanticdb-abstract-table::semanticdb-typecache-find-method):
910         Allow proxied tags to be resolved during the search.
911         (semanticdb-typecache-complete-flush): Support missing or empty
912         pointmax slot, to allow for more database types.
914         * semantic/db.el (semanticdb-abstract-table): Add db-refs slot.
915         (object-print): Allow child classes to overwrite the display of
916         the (%d tags) extra string.
917         (semanticdb-project-database): Specify :type for table.
918         (semanticdb-create-table-for-file): Specify file-truename.
919         (semanticdb-synchronize, semanticdb-partial-synchronize):
920         Restore code that refreshes references to include files.
922         * semantic/decorate/include.el
923         (semantic-decoration-on-fileless-includes): New face.
924         (semantic-decoration-on-fileless-include-map)
925         (semantic-decoration-on-fileless-include-menu): New variables.
926         (semantic-decoration-on-includes-highlight-default):
927         Support includes that have a table, but are not associated with a file.
928         (semantic-decoration-fileless-include-describe)
929         (semantic-decoration-fileless-include-menu): New functions.
930         (semantic-decoration-all-include-summary): Add arrows to indicate
931         the file associated with an include name.
933         * semantic/find.el
934         (semantic-find-tags-by-scope-protection-default): Also filter on
935         package protection of the slot.
937         * semantic/java.el (semantic-java-expand-tag): If some type has a
938         fully qualified name, bust it up into one package and the type
939         with a short name.
941         * semantic/lex.el (define-lex-block-analyzer): Protect against
942         random extra close parenthesis.
944         * semantic/symref.el (semantic-symref-result-get-tags): Make sure
945         the cursor is on the matched name.
947         * semantic/symref/list.el (semantic-symref-results-mode-map):
948         Suppress keymap.
950         * semantic/tag-ls.el (semantic--tag-similar-names-p)
951         (semantic--tag-attribute-similar-p)
952         (semantic--tag-similar-types-p): New functions.
953         (semantic-tag-similar-ignorable-attributes): New variable.
954         (semantic-tag-protection-default): Add package concept to return
955         value.
956         (semantic-tag-package-protected-p): New function.
957         (semantic-tag-full-package): New overload method.
958         (semantic-tag-full-package-default): New default for above.
959         (semantic-tag-full-name-default): Look for the full package name.
961         * semantic/tag.el (semantic-create-tag-proxy)
962         (semantic-tag-set-proxy, semantic-tag-resolve-proxy): New.
964         * semantic/util.el (semantic-describe-buffer):
965         Add semantic-new-buffer-fcn-was-run.
967         * semantic/wisent/java-tags.el (semantic-get-local-variables):
968         Add `this' to the local variable context.
969         (semantic-analyze-split-name, semantic-analyze-unsplit-name): New.
971         * semantic/wisent/python.el (semantic-python-expand-tag):
972         New function.
974         * srecode/compile.el (srecode-compile-templates): Add "framework"
975         special variable support.
976         (srecode-compile-template-table): Support framework specifier.
978         * srecode/cpp.el (srecode-semantic-handle-:c)
979         (srecode-semantic-handle-:cpp): New functions.
980         (srecode-semantic-apply-tag-to-dict): Move from cpp-mode function
981         to c-mode function.
982         (srecode-c-apply-templates): Rename from srecode-cpp-apply-templates.
984         * srecode/dictionary.el (initialize-instance): Remove bogus error
985         condition.
986         (srecode-create-section-dictionary): Remove unused function.
988         * srecode/java.el (srecode-semantic-handle-:java): Fix filename as
989         package variable.  Add current_package variable.
991         * srecode/map.el (srecode-map-update-map): Specify the class.
993         * srecode/mode.el (srecode-minor-mode): Support the m3 menu.
995         * srecode/semantic.el (srecode-semantic-insert-tag):
996         Support system includes.
998         * srecode/srt-mode.el (srecode-font-lock-keywords): Update.
1000         * srecode/table.el (srecode-template-table): Add :framework slot.
1001         (srecode-dump): Dump it.
1002         (srecode-mode-table): Add new modetables slot.
1003         (srecode-get-mode-table): Find the mode, but also find all parent
1004         modes, and merge the tables together in :tables from :modetables.
1005         (srecode-make-mode-table): Init :modetables.
1006         (srecode-mode-table-find): Search in modetables.
1007         (srecode-mode-table-new): Merge the differet files into the
1008         modetables slot.
1010 2012-10-01  David Engster  <deng@randomsample.de>
1012         * ede.el (ede-apply-preprocessor-map): Check that
1013         `semantic-lex-spp-macro-symbol-obarray' is non-nil.
1014         (global-ede-mode): Fix call to `ede-reset-all-buffers'.
1016         * ede/cpp-root.el (ede-preprocessor-map): Make sure we add the
1017         lexical-table even when the table doesn't need to be refreshed.
1019         * ede/dired.el (ede-dired-minor-mode): Use called-interactively-p.
1021         * ede/pmake.el (ede-pmake-insert-variable-once): Wrap in
1022         save-excursion.
1024         * ede/proj-comp.el (ede-proj-makefile-insert-rules): Fix insertion
1025         of phony rule.
1027         * ede/proj-elisp.el (ede-proj-target-elisp):
1028         Remove ede-emacs-preload-compiler.
1029         (ede-proj-makefile-insert-rules, ede-proj-makefile-dependencies):
1030         New methods.
1031         (ede-emacs-compiler): Add 'require' macro to variables and pattern
1032         rule.  Add .elc object extension.
1033         (ede-proj-elisp-packages-to-loadpath): Allow longer relative names.
1034         (ede-proj-makefile-insert-variables): Do not insert preload items.
1035         (ede-proj-target-elisp-autoloads): Don't depend on cedet-autogen.
1037         * ede/util.el (ede-make-buffer-writable):
1038         * semantic/debug.el (semantic-debug-mode): Set buffer-read-only
1039         instead of calling toggle-read-only.
1041         * semantic.el (semantic-fetch-tags): Use progress reporter only
1042         when called interactively.
1043         (semantic-submode-list): Add debugging modes.
1044         (semantic-mode): Remove Semantic from after-change-functions.
1045         Delete the cache, call semantic--tag-unlink-cache-from-buffer, and
1046         set semantic-new-buffer-fcn-was-run to nil.
1048         * semantic/analyze/fcn.el (semantic-analyze-tag-prototype-p)
1049         (semantic-analyze-tag-prototype-p-default): Remove.
1050         (semantic-analyze-type, semantic-analyze-dereference-metatype-1):
1051         Use semantic-tag-prototype-p.
1053         * semantic/bovine/c.el (semantic-c-reset-preprocessor-symbol-map):
1054         Ensure semantic-mode is on before getting preprocessor symbols.
1055         (semantic-c-skip-conditional-section): Use c-scan-conditionals.
1056         (semantic-c-convert-spp-value-to-hideif-value)
1057         (semantic-c-evaluate-symbol-for-hideif, semantic-c-hideif-lookup)
1058         (semantic-c-hideif-defined): Revive hideif code from CEDET trunk.
1059         (semantic-lex-c-if, semantic-c-do-lex-ifdef): Revert changes for
1060         regular expression parsing.
1061         (semantic-cpp-lexer): Add semantic-lex-c-ifdef.
1062         (semantic-expand-c-tag): Check if tag is non-nil before adding it
1063         to return list.
1064         (semantic-expand-c-extern-C, semantic-expand-c-complex-type):
1065         New functions, copied from semantic-expand-c-tag.
1066         (semantic-find-tags-included): New override which also searches
1067         for include tags inside of namespaces.
1068         (semantic-c-dereference-typedef): Use semantic-tag-prototype-p.
1069         (semanticdb-find-table-for-include): New override.
1071         * semantic/bovine/el.el: Remove emacs-lisp-mode-hook.
1073         * semantic/complete.el (semantic-complete-post-command-hook):
1074         Exit completion when user has deleted all characters from the prefix.
1075         (semantic-displayor-focus-request): Return to previous window when
1076         focussing tags.
1078         * semantic/db-el.el (semanticdb-normalize-one-tag): Make obsolete.
1079         (semanticdb-elisp-sym->tag): Use help-function-arglist instead.
1081         * semantic/db-file.el (semanticdb-create-database):
1082         Use semantic-tag-version instead of just semantic-version as the
1083         initializer for the :semantic-tag-version slot.
1085         * semantic/db-find.el (semanticdb-find-tags-by-class-method):
1086         Delegate `include' to semantic-find-tags-included, which by
1087         default will just call semantic-find-tags-by-class.
1089         * semantic/db.el (semanticdb-refresh-table): Do not print warnings
1090         when calling semantic-find-file-noselect.  This avoids the "file
1091         is write protected" messages when parsing system header files,
1092         which might easily be mistaken to mean the currently loaded file.
1093         (semanticdb-save-current-db, semanticdb-save-all-db): Only emit
1094         message when running interactively.
1096         * semantic/decorate/mode.el (semantic-decoration-mode):
1097         Activate decoration of includes by default.
1099         * semantic/doc.el (semantic-doc-snarf-comment-for-tag):
1100         Remove comment delimiter at the end of the text.
1102         * semantic/ede-grammar.el (semantic-ede-proj-target-grammar):
1103         Change aux- and pre-load-packages.
1104         (ede-proj-makefile-dependencies): Update pattern rule so that
1105         resulting parsers are also byte-compiled.
1106         (semantic-ede-grammar-compiler-bovine)
1107         (semantic-ede-source-grammar-wisent): Remove .elc from gargage
1108         pattern, since this is already covered by the elisp compiler.
1109         (project-compile-target): Add compatibility code for Emacs 23,
1110         which does not have `byte-recompile-file'.
1111         (ede-proj-makefile-insert-rules): Add target specific EMACSFLAGS
1112         to raise max-specpdl-size and max-lisp-eval-depth.
1114         * semantic/find.el (semantic-find-tags-included):
1115         Make overridable.
1117         * semantic/fw.el (semantic-alias-obsolete)
1118         (semantic-varalias-obsolete): Use byte-compile-warn.
1119         (semantic-find-file-noselect): Disable font lock by calling
1120         global-font-lock-mode.
1122         * semantic/grammar.el (semantic-grammar-create-package):
1123         Fix message.
1124         (semantic-grammar-batch-build-one-package): When generating
1125         parsers in batch-mode, ignore version control and make sure we do
1126         not use cached versions.
1128         * semantic/ia.el (semantic-ia-complete-symbol-menu): Bring back.
1130         * semantic/lex-spp.el (semantic-lex-spp-symbol-merge): New fun.
1131         (semantic-lex-spp-token-macro-to-macro-stream): Use it.
1132         (semantic-lex-spp-lex-text-string): Instead of only setting the
1133         lexer, call the major mode's setup function.
1135         * semantic/scope.el (semantic-analyze-scoped-types-default):
1136         Use semantic-tag-prototype-p.
1137         (semantic-analyze-scope-nested-tags-default): Make sure we don't
1138         return tags we already have in scopetypes.
1140         * semantic/symref/filter.el
1141         (semantic-symref-test-count-hits-in-tag): Restore.
1143         * semantic/wisent/comp.el (wisent-BITS-PER-WORD):
1144         Use most-positive-fixnum if available.
1146         * semantic/wisent/javascript.el (semantic-tag-protection)
1147         (semantic-analyze-scope-calculate-access)
1148         (semantic-ctxt-current-symbol): New overrides.
1150         * semantic/wisent/python.el (wisent-python-lex-beginning-of-line):
1151         Rewrite to fix byte-compiler warning.
1153 2012-10-01  Robert Jarzmik  <robert.jarzmik@free.fr>
1155         * ede/linux.el (project-linux): New group.
1156         (project-linux-compile-target-command)
1157         (project-linux-compile-project-command): New options.
1158         (project-compile-project, project-compiler-target): New methods.
1160         * inversion.el (inversion-decoders): New regexps for SXEmacs.
1161         (inversion-package-version): More verbose error message.
1162         (inversion-<): Deal with new special cases.
1163         (inversion-require-emacs): New argument sxemacs-ver; use it.
1165 2012-10-01  Nelson Ferreira  <nelson.ferreira@ieee.org>
1167         * ede/emacs.el (ede-emacs-version): Detect SXEmacs.
1169 2012-10-01  William Xu  <william.xwl@gmail.com>
1171         * semantic/bovine/gcc.el (semantic-gcc-query): Returns status when
1172         there is an error.
1173         (semantic-gcc-setup): If the first attempt at calling cpp fails,
1174         try straight GCC.
1176 2012-10-01  Jan Moringen  <jan.moringen@uni-bielefeld.de>
1178         * semantic/idle.el
1179         (semantic-idle-breadcrumbs--display-in-header-line):
1180         Escape %-characters to avoid erroneous expansion in header line.
1181         (semantic-idle-breadcrumbs--display-in-mode-line): Likewise.
1183         * semantic/wisent/python.el (wisent-python-reconstitute-function-tag)
1184         (wisent-python-reconstitute-class-tag, semantic-python-special-p)
1185         (semantic-python-private-p, semantic-python-instance-variable-p)
1186         (semantic-python-docstring-p): New functions.
1188         * srecode/find.el (srecode-user-template-p): New function.
1189         (srecode-all-template-hash): Accept new optional argument
1190         predicate; return only templates matching the predicate.
1191         (srecode-read-template-name): Only retrieve templates matching
1192         srecode-user-template-p.
1194         * srecode/insert.el (srecode-insert-show-error-report)
1195         (srecode-insert-report-error): New functions.
1196         (srecode-insert-variable-secondname-handler)
1197         (srecode-insert-method, srecode-insert-ask-default)
1198         (srecode-insert-variable-secondname-handler)
1199         (srecode-insert-subtemplate, srecode-insert-method-helper)
1200         (srecode-insert-include-lookup): Use them.
1202 2012-10-01  Thomas Bach  <thbach@students.uni-mainz.de>
1204         * semantic/wisent/python.el
1205         (semantic-python-get-system-include-path): Add Python3k support.
1207 2012-10-01  Alexander Haeckel  <_@_>  (tiny change)
1209         * srecode/getset.el (srecode-query-for-field): Return the first
1210         tag found by name from all children tags.
1212 2012-10-01  Dale Sedivec  <dale@codefu.org>
1214         * semantic/wisent/python.el (wisent-python-string-start-re)
1215         (wisent-python-string-re, wisent-python-forward-string)
1216         (wisent-python-forward-line,wisent-python-lex-string):
1217         New variables.
1218         (wisent-python-forward-balanced-expression): New function.
1220 2012-10-01  Pete Beardmore  <elbeardmorez@msn.com>
1222         * semantic/complete.el (semantic-collector-calculate-completions):
1223         Search for additional matches if new prefix is a substring of the
1224         old prefix.
1225         (semantic-displayor-next-action): Immediately show more
1226         completions after user presses TAB the first time.
1227         (semantic-displayor-tooltip-mode)
1228         (semantic-displayor-tooltip-initial-max-tags)
1229         (semantic-displayor-tooltip-max-tags): New defcustoms.
1230         (semantic-displayor-tooltip): Use new variables as initforms.
1231         Use new slot `mode' instead of `force-show'.  Rename `max-tags' to
1232         `max-tags-initial'.
1233         (semantic-displayor-show-request): Display completions according
1234         to new modes, and make variable names clearer.
1235         (semantic-displayor-tooltip::semantic-displayor-scroll-request):
1236         Use new max-tags-initial slot.
1238         * semantic/idle.el (semantic-idle-local-symbol-highlight):
1239         Make sure there actually is a tag at point.
1240         (semantic-idle-completion-list-default): Report errors as messages
1241         if semantic-idle-scheduler-verbose-flag is non-nil.
1243 2012-10-01  Richard Kim  <emacs18@gmail.com>
1245         * semantic/db-global.el (semanticdb-enable-gnu-global-databases):
1246         Add optional NOERROR argument.
1248 2012-10-01  Alex Ott  <alexott@gmail.com>
1250         * semantic/idle.el (semantic-idle-scheduler-enabled-p):
1251         Fix file-checking.
1253 2012-10-01  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
1255         * semantic/db-find.el (semanticdb-find-default-throttle):
1256         Make buffer-local.
1257         (semanticdb-strip-find-results): Check for existing :filename
1258         attribute, so that file information from GNU Global is not lost.
1260 2012-08-07  Andreas Schwab  <schwab@linux-m68k.org>
1262         * ede/base.el (ede-with-projectfile): Use backquote forms.
1264 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
1266         inaccessable -> inaccessible spelling fix (Bug#10052)
1267         * semantic/wisent/comp.el (wisent-inaccessible-symbols):
1268         Rename from wisent-inaccessable-symbols, fixing a misspelling.
1269         Caller changed.
1271 2012-07-09  Andreas Schwab  <schwab@linux-m68k.org>
1273         * ede/project-am.el: Fix typo.
1275 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
1277         Rename configure.in to configure.ac (Bug#11603).
1278         * ede/autoconf-edit.el (autoconf-find-query-for-program)
1279         (autoconf-new-program):
1280         * ede/emacs.el (ede-emacs-version):
1281         * ede/proj.el (ede-proj-setup-buildenvironment):
1282         * ede/project-am.el (project-am-autoconf-file-options):
1283         Prefer configure.ac to configure.in.
1285 2012-03-12  David Engster  <deng@randomsample.de>
1287         * semantic/db-find.el
1288         (semanticdb-find-translate-path-brutish-default): If we don't yet
1289         have a proper table for PATH, use `semanticdb-current-database'
1290         instead (bug #10343).
1292 2012-03-11  David Engster  <deng@randomsample.de>
1294         * semantic/wisent/javascript.el (js-mode): Define `js-mode' as
1295         child-mode of `javascript-mode' (bug #8445).
1297 2012-02-28  Glenn Morris  <rgm@gnu.org>
1299         * semantic/db.el (semanticdb-search-results-table):
1300         Doc fix (standardize possessive apostrophe usage).
1302 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
1304         * ede/auto.el (ede-directory-safe-p, ede-add-project-to-global-list):
1305         Add declarations.
1307 2012-01-29  David Engster  <deng@randomsample.de>
1309         Fix require error when using srecode-insert (Bug#9967).
1310         * srecode/insert.el: Require srecode/filters.
1311         * srecode/filters.el: Drop two requires.
1313 2012-01-09  Eric Ludlam  <zappo@gnu.org>
1315         * ede.el (ede-project-directories): New option.
1316         (ede-directory-safe-p): Check it.
1317         (ede-initialize-state-current-buffer, ede, ede-new)
1318         (ede-check-project-directory, ede-rescan-toplevel)
1319         (ede-load-project-file, ede-parent-project, ede-current-project):
1320         (ede-target-parent): Avoid loading in a project unless it is safe,
1321         since it may involve malicious code.  This security flaw was
1322         pointed out by Hiroshi Oota.
1324         * ede/auto.el (ede-project-autoload): Add safe-p slot.
1325         (ede-project-class-files): Projects using Project.ede are unsafe.
1326         (ede-auto-load-project): New method.
1328         * ede/simple.el (ede-project-class-files): Mark as unsafe.
1330 2011-12-19  Sam Steingold  <sds@gnu.org>
1332         * semantic/edit.el (semantic-edits-incremental-parser): Add the
1333         autoload cookie, necessary for JDEE.
1335 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
1337         * semantic/bovine/c.el (semantic-tag-abstract-p): Fix typo.
1339 2011-11-26  Chong Yidong  <cyd@gnu.org>
1341         * semantic/wisent/python-wy.el:
1342         * semantic/wisent/js-wy.el:
1343         * semantic/wisent/javat-wy.el:
1344         * semantic/bovine/c-by.el:
1345         * semantic/grammar-wy.el: Regenerate.
1347 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
1349         * semantic/lex-spp.el (semantic-lex-spp-first-token-arg-list): Fix typo.
1351 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
1353         * cedet-cscope.el (cedet-cscope-version-check):
1354         * cedet-global.el (cedet-global-min-version)
1355         (cedet-gnu-global-version-check):
1356         * cedet.el (cedet-version):
1357         * data-debug.el (data-debug-prev, data-debug-contract-current-line):
1358         * ede.el (ede-buffer-belongs-to-project-p, ede-auto-add-to-target)
1359         (ede-new, ede-invoke-method, project-edit-file-target, project-rescan)
1360         (ede-add-project-to-global-list, ede-map-all-subprojects):
1361         * inversion.el (inversion-check-version):
1362         * mode-local.el (mode-local-map-file-buffers, define-child-mode)
1363         (define-overloadable-function):
1364         * pulse.el (pulse-flag, pulse):
1365         * semantic.el (semantic-elapsed-time, semantic-parse-region)
1366         (navigate-menu):
1367         * ede/proj-comp.el (ede-compilation-program):
1368         * semantic/debug.el (semantic-debug-parser-go)
1369         (semantic-debug-parser-fail, semantic-debug-parser-quit)
1370         (semantic-debug-parser-abort):
1371         * semantic/idle.el (semantic-idle-core-handler):
1372         * semantic/bovine/debug.el (semantic-bovine-debug-error-frame):
1373         Fix typos.
1375 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
1377         * semantic/lex.el (semantic-lex-tokens):
1378         * semantic/tag-ls.el (semantic-tag-protected-p):
1379         * srecode/mode.el (srecode-prefix-map): Fix typos.
1381 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
1383         * ede/project-am.el (project-compile-target-command): Fix typo.
1385 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
1387         * ede/auto.el (ede-project-autoload):
1388         * ede/proj-comp.el (ede-makefile-rule):
1389         * semantic/analyze.el (semantic-analyze-current-context):
1390         * semantic/ctxt.el (semantic-get-local-variables):
1391         * semantic/tag-ls.el (semantic-tag-calculate-parent): Fix typos.
1393 2011-11-03  David Engster  <dengste@eml.cc>
1395         * srecode.el:
1396         * srecode/texi.el:
1397         * srecode/template.el:
1398         * srecode/java.el:
1399         * srecode/insert.el:
1400         * srecode/document.el:
1401         * srecode/dictionary.el:
1402         * srecode/compile.el:
1403         * semantic/wisent/java-tags.el:
1404         * semantic/texi.el:
1405         * semantic/sort.el:
1406         * semantic/lex-spp.el:
1407         * semantic/idle.el:
1408         * semantic/html.el:
1409         * semantic/db-typecache.el:
1410         * semantic/analyze/complete.el:
1411         * ede/generic.el:
1412         * ede/custom.el:
1413         * ede/cpp-root.el:
1414         * ede/base.el: Fix filenames in comments and headers.
1416         * semantic/db-find.el:
1417         * srecode/insert.el (srecode-insert-include-lookup):
1418         * ede/proj-comp.el (ede-compilation-program): Fix it's -> its in
1419         comments and docstrings.
1421         * semantic/ctxt.el (semantic-end-of-context-default):
1422         * semantic/find.el (semantic-find-tags-by-scope-protection):
1423         * semantic/java.el (semantic-documentation-for-tag): Fix typos in
1424         docstrings.
1426         * semantic/db.el (semanticdb-table, semanticdb-abstract-cache)
1427         (semanticdb-abstract-db-cache):
1428         * semantic/decorate/include.el
1429         (semantic-decoration-unknown-include-describe): Fix filenames in
1430         docstring.
1432         * semantic/ede-grammar.el (semantic-ede-grammar-compiler-wisent):
1433         (semantic-ede-grammar-compiler-bovine): Fix requires that are
1434         added to the grammar-make-script.
1436 2011-10-23  Chong Yidong  <cyd@gnu.org>
1438         * ede.el (ede-maybe-checkout): Function deleted;
1439         vc-toggle-read-only does not do version control now.
1441         * ede/util.el (ede-make-buffer-writable): Don't use
1442         vc-toggle-read-only.
1444         * ede/project-am.el (project-remove-file, project-add-file)
1445         (project-new-target): Don't call ede-maybe-checkout.
1447 2011-10-19  Chong Yidong  <cyd@gnu.org>
1449         * ede.el (ede-minor-mode,global-ede-mode):
1450         * semantic.el (semantic-mode): Doc fix to reflect new
1451         define-minor-mode calling behavior.
1453 2011-07-30  Chong Yidong  <cyd@stupidchicken.com>
1455         * semantic/grammar.el (semantic-grammar-insert-defanalyzers):
1456         Fix require.
1458 2011-07-04  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
1460         * semantic/db.el (semanticdb-file-table-object): Don't bug out on
1461         unconfigured projects if `global-ede-mode' is on (bug#8092).
1463 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
1465         * semantic.el (semantic-elapsed-time): Rewrite using
1466         time-subtract and float-time.
1468 2011-05-11  Glenn Morris  <rgm@gnu.org>
1470         * semantic/wisent/javascript.el (semantic-get-local-variables):
1471         Use define-mode-local-override rather than its obsolete alias.
1473 2011-05-10  Jim Meyering  <meyering@redhat.com>
1475         Fix doubled-word typos.
1476         * ede/pmake.el (ede-proj-makefile-garbage-patterns): the the -> the
1477         * semantic/complete.el (semantic-complete-read-tag-local-members):
1478         Likewise.
1479         * ede.el (ede-auto-add-method): then then -> then
1481 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
1483         * ede/pconf.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1484         * ede/proj-comp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1485         * ede/proj-elisp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf)
1486         (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1487         * ede/proj-scheme.el (ede-proj-tweak-autoconf): Fix typos in docstrings.
1489 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
1491         * Version 23.3 released.
1493 2011-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1495         * semantic/wisent/comp.el (wisent-byte-compile-grammar):
1496         Macroexpand before passing to byte-compile-form.
1498 2011-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1500         * srecode/srt-mode.el (srecode-template-mode): Use define-derived-mode.
1501         * semantic/symref/list.el (semantic-symref-results-mode):
1502         Use run-mode-hooks.
1504 2010-11-12  Glenn Morris  <rgm@gnu.org>
1506         * semantic/wisent/comp.el: Remove unnecessary eval-when-compiles.
1508 2010-11-10  Glenn Morris  <rgm@gnu.org>
1510         * semantic/bovine/c.el: Test system-type with memq.
1512 2010-11-09  Glenn Morris  <rgm@gnu.org>
1514         * semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
1515         * semantic/grammar.el (semantic-grammar-epilogue):
1516         * ede/speedbar.el (ede-find-nearest-file-line):
1517         * ede/pmake.el (ede-proj-makefile-insert-dist-rules):
1518         * ede/autoconf-edit.el (autoconf-delete-parameter):
1519         Use point-at-bol and point-at-eol.
1521 2010-11-07  Glenn Morris  <rgm@gnu.org>
1523         * ede/proj-elisp.el (ede-proj-flush-autoconf): Use point-at-bol.
1525 2010-11-01  Glenn Morris  <rgm@gnu.org>
1527         * semantic/bovine/c.el (semantic-analyze-split-name): Move before use.
1529         * semantic/symref/cscope.el (ede-toplevel):
1530         * semantic/symref.el (ede-toplevel):
1531         * semantic/tag-file.el (ede-toplevel):
1532         * ede.el (ede-toplevel): Fix declarations.
1534 2010-10-31  Glenn Morris  <rgm@gnu.org>
1536         * ede/proj-elisp.el (project-compile-target): Fix previous change.
1537         * semantic/ede-grammar.el (project-compile-target): Fix previous change.
1539 2010-10-31  Julien Danjou  <julien@danjou.info>
1541         * ede/proj-elisp.el (project-compile-target):
1542         * semantic/ede-grammar.el (project-compile-target):
1543         Use `byte-recompile-file'.
1545 2010-10-31  Glenn Morris  <rgm@gnu.org>
1547         * mode-local.el (mode-local-augment-function-help):
1548         * semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons):
1549         * semantic/symref/list.el (semantic-symref-results-dump)
1550         (semantic-symref-rb-toggle-expand-tag): Replace inappropriate uses
1551         of toggle-read-only.
1553 2010-09-30  Chong Yidong  <cyd@stupidchicken.com>
1555         * semantic/bovine/el.el:
1556         * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode):
1557         Fix require statements.
1559 2010-09-29  Chong Yidong  <cyd@stupidchicken.com>
1561         * semantic/tag.el (semantic-tag-version): Bump to 2.0.
1563         * semantic/db-typecache.el (semanticdb-typecache-find-default):
1564         * semantic/imenu.el (semantic-create-imenu-index):
1565         * semantic/grammar.el (semantic--grammar-macro-function-tag):
1566         * semantic/fw.el (semanticdb-without-unloaded-file-searches):
1567         Fix require.  Suggested by David Engster.
1569         * semantic/bovine/c-by.el: Regenerate.
1571 2010-09-29  Eric Ludlam  <zappo@gnu.org>
1573         * semantic/lex-spp.el (semantic-lex-spp-debug-symbol): New var.
1574         (semantic-lex-spp-enable-debug-symbol): New command.
1575         (semantic-lex-spp-value-valid-p)
1576         (semantic-lex-spp-validate-value): New functions.
1577         (semantic-lex-spp-symbol-set)
1578         (semantic-lex-spp-symbol-push): Add call to validate value.
1579         (semantic-lex-spp-table-write-slot-value): Instead of erroring on
1580         invalid values during save, just save a nil.
1582 2010-09-25  Chong Yidong  <cyd@stupidchicken.com>
1584         * ede/linux.el (ede-project-class-files):
1585         * ede/generic.el (ede-generic-new-autoloader):
1586         * ede/emacs.el (ede-project-class-files):
1587         * ede/simple.el (ede-project-class-files):
1588         * ede/cpp-root.el (ede-project-class-files): Fix require name.
1590 2010-09-25  Juanma Barranquero  <lekktu@gmail.com>
1592         * semantic/lex.el (semantic-ignore-comments): Doc fix.
1594         * semantic/symref/list.el (semantic-symref-list-rename-open-hits):
1595         Fix typo in error message.
1596         (semantic-symref-list-map-open-hits): Fix typo in docstring.
1598 2010-09-21  Eric Ludlam  <zappo@gnu.org>
1600         Synch SRecode to CEDET 1.0.
1602         * pulse.el (pulse-momentary-highlight-overlay): If pulse-flag is
1603         'never, disable all pulsing.
1605         * cedet.el (cedet-version):
1606         * srecode.el (srecode-version): Bump version to 1.0.
1608         * srecode/texi.el (srecode-texi-insert-tag-as-doc): New function.
1609         (semantic-insert-foreign-tag): Use it.
1611         * srecode/mode.el (srecode-bind-insert):
1612         Call srecode-load-tables-for-mode.
1613         (srecode-minor-mode-templates-menu): Do not list templates that
1614         are not in the current project.
1615         (srecode-menu-bar): Add binding for srecode-macro-help.
1617         * srecode/table.el (srecode-template-table): Add :project slot.
1618         (srecode-dump): Dump it.
1620         * srecode/map.el (srecode-map-update-map): Make map loading more
1621         robust.
1623         * srecode/insert.el (srecode-insert-fcn): Merge template
1624         dictionary before resolving arguments.
1625         (srecode-insert-method-helper): Add error checking to make sure
1626         that we only have dictionaries.
1627         (srecode-insert-method): Check template nesting depth when using
1628         point inserter override.
1629         (srecode-insert-method): Install override with depth limit.
1631         * srecode/getset.el (srecode-insert-getset): Force tag table
1632         update.  Don't query the class if it is empty.
1634         * srecode/find.el (srecode-template-get-table)
1635         (srecode-template-get-table-for-binding)
1636         (srecode-all-template-hash): Skip if not in current project.
1637         (srecode-template-table-in-project-p): New method.
1639         * srecode/fields.el (srecode-fields-exit-confirmation): New option.
1640         (srecode-field-exit-ask): Use it.
1642         * srecode/dictionary.el (srecode-dictionary-add-template-table):
1643         Do not add variables in tables not for the current project.
1644         (srecode-compound-toString): Handle cases where the default value
1645         is another compound value.
1646         (srecode-dictionary-lookup-name): New optional argument
1647         NON-RECURSIVE, which inhibits visiting dictionary parents.
1648         (srecode-dictionary-add-section-dictionary)
1649         (srecode-dictionary-merge): New optional argument FORCE adds
1650         values even if an identically named entry exists.
1651         (srecode-dictionary-add-entries): New method.
1652         (srecode-create-dictionaries-from-tags): New function.
1654         * srecode/cpp.el (srecode-cpp): New defgroup.
1655         (srecode-cpp-namespaces): New option.
1656         (srecode-semantic-handle-:using-namespaces)
1657         (srecode-cpp-apply-templates): New functions.
1658         (srecode-semantic-apply-tag-to-dict): Handle template parameters
1659         by calling `srecode-cpp-apply-templates'.
1661         * srecode/compile.el (srecode-compile-templates): Fix directory
1662         compare of built-in templates.  Give built-ins lower piority.
1663         Support special variable "project".
1664         (srecode-compile-template-table): Set :project slot of new tables.
1665         (srecode-compile-one-template-tag):
1666         Use srecode-create-dictionaries-from-tags.
1668 2010-09-21  Eric Ludlam  <zappo@gnu.org>
1670         Synch EDE to CEDET 1.0.
1672         * cedet-idutils.el (cedet-idutils-make-command): New option.
1673         (cedet-idutils-mkid-call):
1674         (cedet-idutils-create/update-database): New functions.
1676         * cedet-cscope.el (cedet-cscope-create):
1677         (cedet-cscope-create/update-database): New functions.
1678         (cedet-cscope-support-for-directory): Make interactive.
1680         * cedet-global.el (cedet-global-gtags-command): New option.
1681         (cedet-gnu-global-gtags-call)
1682         (cedet-gnu-global-create/update-database): New functions.
1684         * ede.el (ede-save-cache): Fix recentf-exclude expression.
1685         (ede-make-dist): Always use toplevel project.
1686         (ede-buffer-object): If we fail to find an object in the current
1687         project, loop upward looking for a match.  If no target is found,
1688         use most local project.
1689         (ede-buffer-belongs-to-target-p)
1690         (ede-buffer-belongs-to-project-p): New functions.
1691         (ede-initialize-state-current-buffer): New function.
1692         (ede-target-forms-menu, ede-project-buffers): Use them.
1693         (ede-minor-mode, ede-reset-all-buffers): Use it.
1694         (project-interactive-select-target, project-add-file): Don't use
1695         ede-project-force-load.
1696         (ede-buffer-object): New arg PROJSYM.
1697         (ede-minor-mode): Remove ede-directory-project-p test.
1698         (ede-initialize-state-current-buffer): Don't test for
1699         ede-directory-project-p if there is a matching open project.
1700         (ede-customize-forms-menu): Prevent error if there is no project.
1701         (ede-load-project-file): Set ede-constructing to the thing being
1702         constructed, instead of t.
1703         (ede-project-force-load): Delete.
1705         * ede/base.el:
1706         * ede/auto.el:
1707         * ede/custom.el: New files.
1709         * ede/autoconf-edit.el (autoconf-find-last-macro)
1710         (autoconf-parameters-for-macro): Parse multiline parameters of
1711         macros.  Optionally ignore case and at bol for macro.
1712         (autoconf-parameter-strip): Use greedy match for newlines.
1713         (autoconf-new-automake-string): Delete.
1714         (autoconf-new-program): Use SRecode to fill an empty file.
1716         * ede/cpp-root.el (ede-create-lots-of-projects-under-dir):
1717         New function.
1719         * ede/files.el (ede-flush-project-hash): New command.
1720         (ede-convert-path): Add optional PROJECT arg.
1721         (ede-directory-project-p): Obey ".ede-ignore".
1722         (ede-expand-filename-local)
1723         (ede-expand-filename-impl-via-subproj): New methods.
1724         (ede-expand-filename-impl): Use them.
1725         (ede-project-root, ede-project-root-directory): Move to
1726         ede/auto.el.
1728         * ede/locate.el (ede-locate-flush-hash):
1729         (ede-locate-create/update-root-database): New methods.
1730         (initialize-instance): Use ede-locate-flush-hash.
1732         * ede/pmake.el (ede-proj-makefile-insert-variables): If this is
1733         the top project and not a metasubproject, set TOP to CURDIR.
1734         (ede-proj-makefile-insert-variables): Output a target's object
1735         list whether or not the vars are already in the Makefile.
1736         (ede-pmake-insert-variable-once): New macro.
1738         * ede/project-am.el (project-am-with-makefile-current):
1739         Add recentf-exclude.
1740         (project-am-load-makefile): Obey an optional suggested name.
1741         (project-am-expand-subdirlist): New function.
1742         (project-am-makefile::project-rescan): Use it.  Combine SUBDIRS
1743         and DIST_SUBDIRS.
1744         (project-am-meta-type-alist): A list to scan better Makefile.am.
1745         (project-am-scan-for-targets): Scan also over
1746         project-am-meta-type-alist.
1747         (ede-system-include-path): Simple implementation.
1748         (ede-find-target): Delete.  EDE core takes care of this.
1749         (ede-buffer-mine): Create the searched filename as relative.
1750         (project-am-load): Simplify, using autoconf-edit.
1751         (project-am-extract-package-info): Fix separators.
1753         * ede/proj.el (project-run-target): New method.
1754         (project-make-dist, project-compile-project):
1755         Use ede-proj-automake-p to determine which kind of compile to use.
1756         (project-rescan): Call ede-load-project-file.
1757         (ede-buffer-mine): Add more file names that belong to the project.
1758         (ede-proj-compilers): Improve error message.
1760         * ede/proj-obj.el (ede-ld-linker): Use the LDDEPS variable.
1761         (ede-source-c++): Add more C++ extensions.
1762         (ede-proj-target-makefile-objectcode): Quote initforms.
1763         Support lex and yacc.
1765         * ede/proj-prog.el (ede-proj-makefile-insert-rules): Remove.
1766         (ede-proj-makefile-insert-variables): New, add LDDEPS.
1767         (ede-proj-makefile-insert-automake-post-variables): Add LDADD
1768         variable.  Use ldlibs-local slot.  Add a -l to ldlibs strings.
1769         (ede-proj-target-makefile-program): Swap order of two slots so
1770         they show up in the same order as in the command line.
1771         (ede-proj-target-makefile-program): Add ldlibs-local slot.
1773         * ede/proj-shared.el (ede-g++-libtool-shared-compiler):
1774         Fix inference rule to use cpp files.
1775         (ede-proj-target-makefile-shared-object): Quote initforms.
1777         * ede/proj-misc.el (ede-proj-target-makefile-miscelaneous):
1778         * ede/proj-info.el (ede-proj-target-makefile-info):
1779         * ede/proj-aux.el (ede-proj-target-aux):
1780         * ede/proj-archive.el (ede-proj-target-makefile-archive):
1781         * ede/proj-elisp.el (ede-proj-target-elisp)
1782         (ede-proj-target-elisp-autoloads): Quote initforms.
1784         * ede/srecode.el (ede-srecode-setup): Load autoconf templates.
1786         * ede/shell.el (ede-shell-buffer): Fix buffer name.
1788         * ede/pconf.el (ede-proj-configure-synchronize): If user events
1789         occur while waiting for the compile process to finish, pull them
1790         in and discard those events.
1792 2010-09-19  Eric Ludlam  <zappo@gnu.org>
1794         Synch Semantic to CEDET 1.0.
1796         * semantic.el (semantic-version): Update to 2.0.
1797         (semantic-mode-map): Add "," and "m" bindings.
1798         (navigate-menu): Update.
1800         * semantic/symref.el (semantic-symref-calculate-rootdir):
1801         New function.
1802         (semantic-symref-detect-symref-tool): Use it.
1804         * semantic/symref/grep.el (semantic-symref-grep-shell): New var.
1805         (semantic-symref-perform-search): Use it.  Calculate root dir with
1806         semantic-symref-calculate-rootdir.
1807         (semantic-symref-derive-find-filepatterns): Improve error message.
1809         * semantic/symref/list.el
1810         (semantic-symref-results-mode-map): New bindings.
1811         (semantic-symref-auto-expand-results): New option.
1812         (semantic-symref-results-dump): Obey auto-expand.
1813         (semantic-symref-list-expand-all, semantic-symref-regexp)
1814         (semantic-symref-list-contract-all)
1815         (semantic-symref-list-map-open-hits)
1816         (semantic-symref-list-update-open-hits)
1817         (semantic-symref-list-create-macro-on-open-hit)
1818         (semantic-symref-list-call-macro-on-open-hits): New functions.
1819         (semantic-symref-list-menu-entries)
1820         (semantic-symref-list-menu): New vars.
1821         (semantic-symref-list-map-open-hits): Move cursor to beginning of
1822         match before calling the mapped function.
1824         * semantic/doc.el
1825         (semantic-documentation-comment-preceeding-tag): Do nothing if the
1826         mode doesn't provide comment-start-skip.
1828         * semantic/scope.el
1829         (semantic-analyze-scope-nested-tags-default): Strip duplicates.
1830         (semantic-analyze-scoped-inherited-tag-map): Take the tag we are
1831         looking for as part of the scoped tags list.
1833         * semantic/html.el (semantic-default-html-setup):
1834         Add senator-step-at-tag-classes.
1836         * semantic/decorate/include.el
1837         (semantic-decoration-on-unknown-includes): Change light bgcolor.
1838         (semantic-decoration-on-includes-highlight-default): Check that
1839         the include tag has a position.
1841         * semantic/complete.el (semantic-collector-local-members):
1842         (semantic-complete-read-tag-local-members)
1843         (semantic-complete-jump-local-members): New class and functions.
1844         (semantic-complete-self-insert): Save excursion before completing.
1846         * semantic/analyze/complete.el
1847         (semantic-analyze-possible-completions-default): If no completions
1848         are found, return the raw by-name-only completion list.  Add FLAGS
1849         arguments.  Add support for 'no-tc (type constraint) and
1850         'no-unique, or no stripping duplicates.
1851         (semantic-analyze-possible-completions-default): Add FLAGS arg.
1853         * semantic/util-modes.el
1854         (semantic-stickyfunc-show-only-functions-p): New option.
1855         (semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
1856         the very first line in a buffer.
1858         * semantic/util.el (semantic-hack-search)
1859         (semantic-recursive-find-nonterminal-by-name)
1860         (semantic-current-tag-interactive): Delete.
1861         (semantic-describe-buffer): Fix expand-nonterminal.
1862         Add lex-syntax-mods, type relation separator char, and command
1863         separation char.
1864         (semantic-sanity-check): Only message if called interactively.
1866         * semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
1867         :filename property and the tag position.
1869         * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
1870         Add recursion limit.
1872         * semantic/imenu.el (semantic-imenu-bucketize-type-members):
1873         Make this buffer local, not the obsoleted variable.
1875         * semantic/idle.el: Add breadcrumbs support.
1876         (semantic-idle-summary-current-symbol-info-default)
1877         (semantic-idle-tag-highlight)
1878         (semantic-idle-completion-list-default):
1879         Use semanticdb-without-unloaded-file-searches for speed, and to
1880         conform to the controls that specify if the idle timer is supposed
1881         to be parsing unparsed includes.
1882         (semantic-idle-symbol-highlight-face)
1883         (semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
1884         Callers changed.
1885         (semantic-idle-work-parse-neighboring-files-flag): Default to nil.
1886         (semantic-idle-work-update-headers-flag): New var.
1887         (semantic-idle-work-for-one-buffer): Use it.
1888         (semantic-idle-local-symbol-highlight): Rename from
1889         semantic-idle-tag-highlight.
1890         (semantic-idle-truncate-long-summaries): New option.
1892         * semantic/ia.el (semantic-ia-cache)
1893         (semantic-ia-get-completions): Delete.  Callers changed.
1894         (semantic-ia-show-variants): New command.
1895         (semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
1896         (semantic-ia-show-summary): If there isn't anything to show, say so.
1898         * semantic/grammar.el (semantic-grammar-create-package):
1899         Save the buffer even in batch mode.
1901         * semantic/fw.el
1902         (semanticdb-without-unloaded-file-searches): New macro.
1904         * semantic/dep.el (semantic-dependency-find-file-on-path):
1905         Fix case dereferencing ede-object when it is a list.
1907         * semantic/db-typecache.el (semanticdb-expand-nested-tag)
1908         (semanticdb-typecache-faux-namespace): New functions.
1909         (semanticdb-typecache-file-tags)
1910         (semanticdb-typecache-merge-streams): Use them.
1911         (semanticdb-typecache-file-tags): When deriving tags from a file,
1912         give the mode a chance to monkey with the tag copy.
1913         (semanticdb-typecache-find-default): Wrap find in save-excursion.
1914         (semanticdb-typecache-find-by-name-helper): Merge found names down.
1916         * semantic/db-global.el
1917         (semanticdb-enable-gnu-global-in-buffer): Don't show messages if
1918         GNU Global is not available and we don't want to throw an error.
1920         * semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
1921         When trying to normalize the tag to a buffer, don't error if
1922         set-buffer method doesn't exist.
1924         * semantic/db-file.el (semanticdb-save-db): Simplify msg.
1926         * semantic/db.el (semanticdb-refresh-table): If forcing a
1927         refresh on a file not in a buffer, use semantic-find-file-noselect
1928         and delete the buffer after use.
1929         (semanticdb-current-database-list): When calculating root via
1930         hooks, force it through true-filename and skip the list of
1931         possible roots.
1933         * semantic/ctxt.el (semantic-ctxt-imported-packages): New.
1935         * semantic/analyze/debug.el
1936         (semantic-analyzer-debug-insert-tag): Reset standard output to
1937         current buffer.
1938         (semantic-analyzer-debug-global-symbol)
1939         (semantic-analyzer-debug-missing-innertype): Change "prefix" to
1940         "symbol" in messages.
1942         * semantic/analyze/refs.el (semantic-analyze-refs-impl)
1943         (semantic-analyze-refs-proto): When calculating value, make sure
1944         the found tag is 'similar' to the originating tag.
1945         (semantic--analyze-refs-find-tags-with-parent): Attempt to
1946         identify matches via imported symbols of parents.
1947         (semantic--analyze-refs-full-lookup-with-parents): Do a deep
1948         search during the brute search.
1950         * semantic/analyze.el
1951         (semantic-analyze-find-tag-sequence-default): Be robust to
1952         calculated scopes being nil.
1954         * semantic/bovine/c.el (semantic-c-describe-environment):
1955         Add project macro symbol array.
1956         (semantic-c-parse-lexical-token): Add recursion limit.
1957         (semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
1958         New overrides.
1959         (semantic-expand-c-tag-namelist): Split a full type from a typedef
1960         out to its own tag.
1961         (semantic-expand-c-tag-namelist): Do not split out a typedef'd
1962         inline type if it is an anonymous type.
1963         (semantic-c-reconstitute-token): Use the optional initializers as
1964         a clue that some function is probably a constructor.
1965         When defining the type of these constructors, split the parent name,
1966         and use only the class part, if applicable.
1968         * semantic/bovine/c-by.el:
1969         * semantic/wisent/python-wy.el: Regenerate.
1971 2010-07-20  Juanma Barranquero  <lekktu@gmail.com>
1973         * semantic/db-file.el (object-write): Fix typo in docstring.
1975 2010-06-03  Eric Ludlam  <zappo@gnu.org>
1977         * semantic/lex-spp.el
1978         (semantic-lex-spp-table-write-slot-value): Instead of erroring on
1979         invalid values during save, just save a nil (Bug#6324).
1981 2010-05-31  Jonathan Marchand  <jonathlela@gmail.com>  (tiny change)
1983         * ede/cpp-root.el (ede-set-project-variables): Fix feature name
1984         (bug#6231).
1986 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1988         Use a mode-line spec rather than a static string in Semantic.
1989         * semantic/util-modes.el:
1990         (semantic-minor-modes-format): New var to replace...
1991         (semantic-minor-modes-status): Remove.
1992         (semantic-mode-line-update): Construct a mode-line spec rather than
1993         a static string so that mouse buttons can be used on individual minor
1994         modes and so that semantic-mode-line-update only needs to be called
1995         when global settings are changed.
1996         (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
1997         Call semantic-mode-line-update.
1998         (semantic-toggle-minor-mode-globally): Don't assume mode is on
1999         minor-mode-alist, check semantic-minor-mode-alist as well.
2000         (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
2001         (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
2002         (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
2003         * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
2004         * semantic/idle.el (semantic-idle-scheduler-mode)
2005         (define-semantic-idle-service, semantic-idle-summary-mode):
2006         * semantic/decorate/mode.el (semantic-decoration-mode):
2007         Don't call semantic-mode-line-update any more.
2009 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2011         Use define-minor-mode in CEDET where applicable.
2013         * srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
2014         Use define-minor-mode.
2016         * semantic/util-modes.el (semantic-add-minor-mode):
2017         Remove unused arg `keymap' and code redundant with define-minor-mode.
2018         (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
2019         (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
2020         (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
2021         (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
2022         (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
2023         (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
2024         Use define-minor-mode.
2025         (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
2026         (semantic-show-unmatched-syntax-mode-setup)
2027         (semantic-show-parser-state-mode-setup)
2028         (semantic-highlight-func-mode-setup): Inline into sole caller.
2030         * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2031         (semantic-mru-bookmark-mode): Use define-minor-mode.
2032         (semantic-mru-bookmark-mode-setup): Inline into sole caller.
2034         * semantic/idle.el (define-semantic-idle-service):
2035         Use define-minor-mode and inline setup function into its sole caller.
2036         (semantic-idle-scheduler-mode-setup)
2037         (semantic-idle-summary-mode-setup): Inline into sole caller.
2038         (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
2039         Use define-minor-mode.
2041         * semantic/decorate/mode.el (global-semantic-decoration-mode)
2042         (semantic-decoration-mode): Use define-minor-mode.
2043         (semantic-decoration-mode-setup): Inline into sole caller.
2045         * ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
2046         (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
2047         (ede-dired-add-to-target): Use dolist.
2049 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
2051         * semantic.el (semantic-completion-at-point-function):
2052         New function.
2053         (semantic-mode): Use semantic-completion-at-point-function for
2054         completion-at-point-functions instead.
2056 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
2058         * semantic.el (semantic-mode): When enabled, add
2059         semantic-ia-complete-symbol to completion-at-point-functions.
2061         * semantic/ia.el (semantic-ia-complete-symbol): Return nil
2062         if Semantic is not active.
2064 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
2066         * ede/pmake.el (ede-proj-makefile-insert-variables):
2067         Don't destroy list before using it.
2069 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
2071         * semantic/imenu.el (semantic-imenu-bucketize-type-members)
2072         (semantic-create-imenu-directory-index): Fix typos in docstrings.
2073         (semantic-imenu-goto-function): Reflow docstring.
2075 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
2077         * srecode/table.el (srecode-template-table): Fix docstring typo.
2079 2010-03-24  Glenn Morris  <rgm@gnu.org>
2081         * semantic/bovine/c.el (semantic-c-describe-environment):
2082         Consistently check ede-object is bound throughout.
2084         * ede/project-am.el (ede-shell-run-something): Declare.
2086 2010-03-13  Eric M. Ludlam  <zappo@gnu.org>
2088         * semantic/imenu.el: New file, from the CEDET repository
2089         (Bug#5412).
2091 2010-03-06  Glenn Morris  <rgm@gnu.org>
2093         * semantic/grammar.el (semantic-grammar-header-template):
2094         Update template copyright to GPLv3+.
2096 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
2098         * semantic/db-find.el
2099         (semanticdb-find-translate-path-brutish-default):
2100         * ede/make.el (ede-make-check-version):
2101         Use with-current-buffer instead of save-excursion.
2103 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
2105         * semantic/wisent/javascript.el (wisent-javascript-jv-expand-tag):
2106         Avoid c(ad)ddr and use c(ad)r of cddr (Bug#5640).
2108 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
2110         * data-debug.el (data-debug): Move to extensions group.
2112         * ede.el (ede):
2113         * srecode.el (srecode):
2114         * semantic.el (semantic): Put in tools and extensions group.
2116 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
2118         * ede.el (ede-run-target, project-delete-target)
2119         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
2120         (ede-adebug-project, ede-adebug-project-parent)
2121         (ede-adebug-project-root): Fix typos in docstrings.
2123 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
2125         * ede/locate.el (ede-locate-file-in-project)
2126         (ede-locate-file-in-project-impl): Fix typos in docstrings.
2127         (ede-enable-locate-on-project): Fix typos in error messages.
2129         * semantic/util-modes.el (semantic-unmatched-syntax-face)
2130         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
2131         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
2132         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
2133         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
2134         Fix typos in menu help.
2136         * semantic.el (semantic-require-version, semantic--buffer-cache)
2137         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
2138         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
2139         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
2140         (semantic-parse-stream, semantic-parse-region)
2141         (semantic-parse-region-default, semantic--set-buffer-cache)
2142         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
2143         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
2144         (semantic-default-submodes):
2145         * semantic/db-ebrowse.el (semanticdb-table-ebrowse)
2146         (semanticdb-create-ebrowse-database)
2147         (semanticdb-find-tags-for-completion-method)
2148         (semanticdb-find-tags-by-class-method)
2149         (semanticdb-deep-find-tags-by-name-method)
2150         (semanticdb-deep-find-tags-for-completion-method):
2151         * semantic/db-el.el (semanticdb-elisp-mapatom-collector)
2152         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
2153         (semanticdb-find-tags-for-completion-method)
2154         (semanticdb-find-tags-by-class-method)
2155         (semanticdb-deep-find-tags-for-completion-method):
2156         * semantic/db-find.el (semanticdb-find-translate-path)
2157         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
2158         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
2159         (semanticdb-find-tags-by-name-method)
2160         (semanticdb-find-tags-by-name-regexp-method)
2161         (semanticdb-find-tags-for-completion-method)
2162         (semanticdb-find-tags-by-class-method)
2163         (semanticdb-find-tags-external-children-of-type-method)
2164         (semanticdb-find-tags-subclasses-of-type-method)
2165         (semanticdb-deep-find-tags-by-name-method)
2166         (semanticdb-deep-find-tags-by-name-regexp-method)
2167         (semanticdb-deep-find-tags-for-completion-method):
2168         * semantic/db-global.el (semanticdb-enable-gnu-global-hook)
2169         (semanticdb-enable-gnu-global-in-buffer)
2170         (semanticdb-find-tags-for-completion-method)
2171         (semanticdb-deep-find-tags-by-name-method)
2172         (semanticdb-deep-find-tags-for-completion-method):
2173         * semantic/db-javascript.el (semanticdb-javascript-tags)
2174         (javascript-mode, semanticdb-find-translate-path)
2175         (semanticdb-find-tags-for-completion-method)
2176         (semanticdb-find-tags-by-class-method)
2177         (semanticdb-deep-find-tags-by-name-method)
2178         (semanticdb-deep-find-tags-for-completion-method)
2179         (semanticdb-find-tags-external-children-of-type-method):
2180         * semantic/idle.el (semantic-idle-work-core-handler)
2181         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
2182         (global-semantic-idle-scheduler-mode):
2183         * srecode/dictionary.el (srecode-field-value)
2184         (srecode-dictionary-add-section-dictionary):
2185         Fix typos in docstrings.
2187 2010-01-17  Glenn Morris  <rgm@gnu.org>
2189         * semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
2191 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
2193         * semantic.el (semantic-mode): Fix typos in docstrings.
2195 2010-01-16  Mario Lang  <mlang@delysid.org>
2197         * ede/cpp-root.el (ede-cpp-root-project):
2198         * ede/files.el (ede-expand-filename):
2199         * ede/simple.el (ede-simple-project):
2200         * semantic/complete.el (semantic-complete-read-tag-engine)
2201         (semantic-complete-inline-tag-engine):
2202         * semantic/db-el.el (semanticdb-equivalent-mode):
2203         * semantic/db-global.el (semanticdb-equivalent-mode):
2204         * semantic/db-javascript.el (semanticdb-equivalent-mode):
2205         * semantic/db.el (semanticdb-equivalent-mode):
2206         * semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
2207         * semantic/idle.el (semantic-idle-work-for-one-buffer):
2208         Remove duplicated words in doc-strings.
2210 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2212         * semantic/edit.el (semantic-reparse-needed-change-hook)
2213         (semantic-no-reparse-needed-change-hook):
2214         * srecode/insert.el (srecode-resolve-argument-list)
2215         (srecode-template-inserter-blank, srecode-template-inserter-variable)
2216         (srecode-template-inserter-ask, srecode-template-inserter-width)
2217         (srecode-template-inserter-section-start)
2218         (srecode-template-inserter-section-end, srecode-insert-method):
2219         Fix typos in docstrings.
2221 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
2223         * data-debug.el (data-debug): Fix customization group reference.
2225 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
2227         * semantic/analyze.el (semantic-analyze-push-error)
2228         (semantic-analyze-context, semantic-analyze-context-assignment)
2229         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
2230         * semantic/java.el (java-mode, semantic-tag-include-filename)
2231         (semantic-java-doc-keywords-map):
2232         * semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
2233         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
2234         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
2235         (semantic-c-classname, semantic-format-tag-uml-prototype)
2236         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
2237         * semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
2238         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
2239         (semantic-get-local-variables, semantic-end-of-command)
2240         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
2241         (lisp-mode):
2242         * semantic/bovine/make.el (makefile-mode):
2243         * semantic/wisent/python.el (wisent-python-string-re)
2244         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
2245         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
2246         (semantic-lex, semantic-get-local-variables, python-mode):
2247         * semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
2248         * srecode/extract.el (srecode-extract-state-set)
2249         (srecode-extract-method): Fix typos in docstrings.
2251 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
2253         * semantic.el (semantic-new-buffer-setup-functions):
2254         Add python parser.
2256 2010-01-10  Richard Kim  <emacs18@gmail.com>
2258         * semantic/wisent/python-wy.el:
2259         * semantic/wisent/python.el: New files.
2261 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
2263         * semantic/db-typecache.el (semanticdb-typecache-find-default):
2264         Fix typo in docstring.
2266 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2268         * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2269         (semantic-mru-bookmark-mode): Doc fixes.
2271         * semantic/db.el (semanticdb-cache-get): Use error instead
2272         of assert.
2274 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
2276         * semantic/ia.el (semantic-ia-complete-symbol):
2277         Make argument optional.
2279 2009-12-05  Eric Ludlam  <zappo@gnu.org>
2281         * semantic/bovine/c.el (semantic-c-describe-environment):
2282         Describe project macro symbols.
2284         * semantic/complete.el (semantic-complete-do-completion):
2285         Don't call semantic-collector-current-exact-match.
2287         * ede.el (ede-apply-preprocessor-map): Accept lists of
2288         ede-objects as targets.
2290         * ede/pmake.el (ede-proj-makefile-insert-variables):
2291         Output a target's object list even if compiler vars are already in the
2292         Makefile.
2294         * ede/emacs.el (ede-preprocessor-map): Add config.h to the
2295         list of headers producing necessary macros.
2297 2009-11-24  Glenn Morris  <rgm@gnu.org>
2299         * semantic/idle.el (global-semantic-idle-scheduler-mode):
2300         Move after definition of global-semantic-idle-tag-highlight-mode.
2302 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
2304         * srecode/map.el (srecode-get-maps):
2305         * semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
2306         * semantic/wisent/comp.el (wisent-toggle-verbose-flag):
2307         * semantic/decorate/mode.el (semantic-decoration-mode)
2308         (semantic-toggle-decoration-style):
2309         * semantic/decorate/include.el
2310         (semantic-decoration-include-describe)
2311         (semantic-decoration-unknown-include-describe)
2312         (semantic-decoration-unparsed-include-describe)
2313         (semantic-decoration-all-include-summary):
2314         * semantic/bovine/c.el (semantic-c-debug-mode-init):
2315         * semantic/analyze/complete.el
2316         (semantic-analyze-possible-completions):
2317         * semantic/util-modes.el (semantic-highlight-edits-mode)
2318         (semantic-show-unmatched-syntax-mode)
2319         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
2320         (semantic-highlight-func-mode):
2321         * semantic/util.el (semantic-describe-buffer):
2322         * semantic/symref.el (semantic-symref-find-references-by-name)
2323         (semantic-symref-find-tags-by-name)
2324         (semantic-symref-find-tags-by-regexp)
2325         (semantic-symref-find-tags-by-completion)
2326         (semantic-symref-find-file-references-by-name)
2327         (semantic-symref-find-text):
2328         * semantic/senator.el (senator-copy-tag, senator-kill-tag)
2329         (senator-yank-tag):
2330         * semantic/scope.el (semantic-calculate-scope):
2331         * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
2332         * semantic/idle.el (semantic-idle-scheduler-mode)
2333         (define-semantic-idle-service):
2334         * semantic/complete.el (semantic-complete-analyze-inline)
2335         (semantic-complete-analyze-inline-idle):
2336         * semantic/analyze.el (semantic-analyze-current-context):
2337         * mode-local.el (describe-mode-local-bindings)
2338         (describe-mode-local-bindings-in-mode):
2339         * ede/make.el (ede-make-check-version):
2340         * ede/locate.el (ede-enable-locate-on-project):
2341         * cedet-idutils.el (cedet-idutils-expand-filename)
2342         (cedet-idutils-version-check):
2343         * cedet-global.el (cedet-gnu-global-expand-filename)
2344         (cedet-gnu-global-version-check):
2345         * cedet-cscope.el (cedet-cscope-expand-filename)
2346         (cedet-cscope-version-check): Use called-interactively-p instead
2347         of interactive-p.
2349         * semantic/ia.el (semantic-ia-completion-format-tag-function):
2350         Use semantic-format-tag-prototype.
2352 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
2354         * semantic/complete.el (semantic-complete-read-tag-engine)
2355         (semantic-complete-jump-local, semantic-complete-jump):
2356         Improve prompt string.
2358 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
2360         * semantic/complete.el (semantic-complete-inline-map): Doc fix.
2362         * semantic/idle.el (define-semantic-idle-service)
2363         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
2365 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
2367         * cedet.el (cedet-menu-map): Re-order menu items.
2369         * semantic.el: Enable idle-mode menu items only if
2370         global-semantic-idle-scheduler-mode is enabled.
2371         (semantic-default-submodes): Doc fix.
2373         * semantic/idle.el (global-semantic-idle-scheduler-mode):
2374         When turning off, disable other idle modes.
2376 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
2378         * semantic/idle.el (semantic-idle-summary-mode)
2379         (semantic-idle-summary-mode): Define using define-minor-mode
2380         instead of define-semantic-idle-service.
2381         (semantic-idle-summary-mode): New function.
2382         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
2383         that mouse motion does not reset the echo area.
2385 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
2387         * semantic/ctxt.el (semantic-get-local-variables):
2388         Disable the progress reporter entirely.
2390 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2392         * semantic/fw.el (semantic/loaddefs):
2393         * srecode.el (srecode/loaddefs):
2394         * ede.el (ede/loaddefs): Load rather than require.
2395         * ede/cpp-root.el:
2396         * ede/emacs.el:
2397         * ede/files.el:
2398         * ede/linux.el:
2399         * ede/locate.el:
2400         * ede/make.el:
2401         * ede/shell.el:
2402         * ede/speedbar.el:
2403         * ede/system.el:
2404         * ede/util.el:
2405         * semantic/analyze.el:
2406         * semantic/bovine.el:
2407         * semantic/complete.el:
2408         * semantic/ctxt.el:
2409         * semantic/db-file.el:
2410         * semantic/db-find.el:
2411         * semantic/db-global.el:
2412         * semantic/db-mode.el:
2413         * semantic/db-typecache.el:
2414         * semantic/db.el:
2415         * semantic/debug.el:
2416         * semantic/dep.el:
2417         * semantic/doc.el:
2418         * semantic/edit.el:
2419         * semantic/find.el:
2420         * semantic/format.el:
2421         * semantic/html.el:
2422         * semantic/ia-sb.el:
2423         * semantic/ia.el:
2424         * semantic/idle.el:
2425         * semantic/lex-spp.el:
2426         * semantic/lex.el:
2427         * semantic/mru-bookmark.el:
2428         * semantic/scope.el:
2429         * semantic/senator.el:
2430         * semantic/sort.el:
2431         * semantic/symref.el:
2432         * semantic/tag-file.el:
2433         * semantic/tag-ls.el:
2434         * semantic/tag-write.el:
2435         * semantic/tag.el:
2436         * semantic/util-modes.el:
2437         * semantic/analyze/complete.el:
2438         * semantic/analyze/refs.el:
2439         * semantic/bovine/c.el:
2440         * semantic/bovine/gcc.el:
2441         * semantic/bovine/make.el:
2442         * semantic/bovine/scm.el:
2443         * semantic/decorate/include.el:
2444         * semantic/decorate/mode.el:
2445         * semantic/symref/cscope.el:
2446         * semantic/symref/global.el:
2447         * semantic/symref/grep.el:
2448         * semantic/symref/idutils.el:
2449         * semantic/symref/list.el:
2450         * semantic/wisent/java-tags.el:
2451         * semantic/wisent/javascript.el:
2452         * srecode/compile.el:
2453         * srecode/cpp.el:
2454         * srecode/document.el:
2455         * srecode/el.el:
2456         * srecode/expandproto.el:
2457         * srecode/getset.el:
2458         * srecode/insert.el:
2459         * srecode/java.el:
2460         * srecode/map.el:
2461         * srecode/mode.el:
2462         * srecode/template.el:
2463         * srecode/texi.el: Remove the file-local setting of
2464         generated-autoload-feature.
2466 2009-11-03  Glenn Morris  <rgm@gnu.org>
2468         * mode-local.el (with-mode-local): Doc fix.
2470 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
2472         * cedet.el (cedet-menu-map): Remove Semantic and EDE menu
2473         items.
2475         * ede.el (ede-minor-mode):
2476         * semantic.el (semantic-mode): Toggle menu separators.
2478 2009-10-31  Glenn Morris  <rgm@gnu.org>
2480         * semantic/tag.el (semantic--tag-link-list-to-buffer):
2481         Use mapc rather than mapcar because the return value is never used.
2483         * srecode/template.el, semantic/wisent/javascript.el:
2484         * semantic/wisent/java-tags.el, semantic/texi.el:
2485         * semantic/html.el:
2486         Suppress harmless warnings about setting up semantic-imenu (not
2487         part of Emacs) variables.
2489 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2491         * srecode/srt-mode.el (semantic-analyze-possible-completions):
2492         * semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
2493         * semantic/symref/grep.el (semantic-symref-perform-search):
2494         * semantic/bovine/gcc.el (semantic-gcc-query):
2495         * semantic/bovine/c.el (semantic-c-parse-lexical-token):
2496         * semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
2497         (semantic-analyzer-debug-global-symbol)
2498         (semantic-analyzer-debug-missing-innertype)
2499         (semantic-analyzer-debug-insert-include-summary):
2500         * semantic/util.el (semantic-file-tag-table):
2501         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
2502         (semantic-recursive-find-nonterminal-by-name):
2503         * semantic/tag-ls.el (semantic-tag-calculate-parent-default):
2504         * semantic/tag-file.el (semantic-prototype-file):
2505         * semantic/symref.el (semantic-symref-parse-tool-output):
2506         * semantic/sb.el (semantic-sb-fetch-tag-table):
2507         * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
2508         * semantic/idle.el (semantic-idle-work-for-one-buffer):
2509         (semantic-idle-summary-maybe-highlight):
2510         * semantic/ia-sb.el (semantic-ia-speedbar)
2511         (semantic-ia-sb-tag-info):
2512         * semantic/grammar.el (semantic-analyze-possible-completions):
2513         * semantic/find.el (semantic-brute-find-tag-by-position):
2514         * semantic/ede-grammar.el (project-compile-target):
2515         (ede-proj-makefile-insert-variables):
2516         * semantic/debug.el (semantic-debug-set-parser-location):
2517         (semantic-debug-set-source-location, semantic-debug-interface-layout)
2518         (semantic-debug-mode, semantic-debug):
2519         * semantic/db.el (semanticdb-needs-refresh-p):
2520         * semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
2521         * semantic/db-javascript.el (semanticdb-equivalent-mode):
2522         * semantic/db-find.el (semanticdb-find-log-new-search)
2523         (semanticdb-find-translate-path-includes--internal)
2524         (semanticdb-reset-log, semanticdb-find-log-activity):
2525         * semantic/db-file.el (object-write):
2526         * semantic/db-el.el (semanticdb-equivalent-mode):
2527         * semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
2528         (semanticdb-create-ebrowse-database):
2529         * semantic/db-debug.el (semanticdb-table-sanity-check):
2530         * semantic/complete.el (semantic-displayor-focus-request)
2531         (semantic-collector-calculate-completions-raw)
2532         (semantic-complete-read-tag-analyzer):
2533         * semantic/analyze.el (semantic-analyze-pulse):
2534         * ede/util.el (ede-update-version-in-source):
2535         * ede/proj.el (project-delete-target):
2536         * ede/proj-elisp.el (ede-update-version-in-source)
2537         (ede-proj-flush-autoconf):
2538         * ede/pconf.el (ede-proj-configure-synchronize)
2539         (ede-proj-configure-synchronize):
2540         * ede/locate.el (ede-locate-file-in-project-impl):
2541         * ede/linux.el (ede-linux-version):
2542         * ede/emacs.el (ede-emacs-version):
2543         * ede/dired.el (ede-dired-add-to-target):
2544         * ede.el (ede-buffer-header-file, ede-find-target)
2545         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
2546         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
2547         * cedet-idutils.el (cedet-idutils-fnid-call):
2548         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
2549         (cedet-idutils-version-check):
2550         * cedet-global.el (cedet-gnu-global-call):
2551         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
2552         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
2553         * cedet-cscope.el (cedet-cscope-call)
2554         (cedet-cscope-expand-filename, cedet-cscope-version-check):
2555         Use with-current-buffer.
2556         * ede.el (ede-make-project-local-variable)
2557         (ede-set-project-variables, ede-set): Use dolist.
2559 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2561         * mode-local.el (make-obsolete-overload): Add `when' argument.
2562         (overload-docstring-extension): Use that info.
2563         * semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
2564         * semantic/idle.el (semantic-eldoc-current-symbol-info):
2565         * semantic/tag-ls.el (semantic-nonterminal-protection)
2566         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
2567         (semantic-nonterminal-full-name): Add the new `when' info.
2568         * semantic/decorate/mode.el (semantic/decorate): Require CL for
2569         `assert'.
2571 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2573         * semantic/fw.el (semantic-alias-obsolete)
2574         (semantic-varalias-obsolete): Make the `when' arg mandatory.
2575         (define-mode-overload-implementation):
2576         * semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
2577         * semantic/wisent.el (wisent-lex-make-token-table):
2578         * semantic/util.el (semantic-file-token-stream)
2579         (semantic-something-to-stream):
2580         * semantic/tag.el (semantic-tag-make-assoc-list)
2581         (semantic-expand-nonterminal):
2582         * semantic/tag-file.el (semantic-find-nonterminal)
2583         (semantic-find-dependency, semantic-find-nonterminal)
2584         (semantic-find-dependency):
2585         * semantic/lex.el (semantic-flex-start, semantic-flex-end)
2586         (semantic-flex-text, semantic-flex-make-keyword-table)
2587         (semantic-flex-keyword-p, semantic-flex-keyword-put)
2588         (semantic-flex-keyword-get, semantic-flex-map-keywords)
2589         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
2590         * semantic/java.el (semantic-java-prototype-nonterminal):
2591         * semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
2592         (semantic-after-idle-scheduler-reparse-hooks):
2593         * semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
2594         * semantic/db-mode.el (semanticdb-mode-hooks):
2595         * semantic.el (semantic-toplevel-bovine-table)
2596         (semantic-toplevel-bovine-cache)
2597         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
2598         (semantic-init-mode-hooks, semantic-init-db-hooks)
2599         (semantic-bovination-working-type): Provide the `when' arg.
2601 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
2603         * semantic/util.el (semantic-recursive-find-nonterminal-by-name):
2604         * semantic/tag.el (semantic-token-type-parent): Add WHEN
2605         argument to make-obsolete.
2607         * semantic/fw.el (semantic-alias-obsolete)
2608         (semantic-varalias-obsolete): Add optional WHEN argument.
2610 2009-10-21  Eric Ludlam  <zappo@gnu.org>
2612         * semantic/bovine/c.el (semantic-c-debug-mode-init)
2613         (semantic-c-debug-mode-init-pch): New functions.
2614         (semantic-c-debug-mode-init-last-mode): New var.
2615         (semantic-c-parse-lexical-token): Use them.
2617         * semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
2618         When extracting the argument list, limit only by point-max.
2620 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
2622         * srecode/srt.el:
2623         * srecode/compile.el:
2624         * semantic/mru-bookmark.el:
2625         * semantic/debug.el:
2626         * semantic/complete.el:
2627         * semantic/analyze.el: Require CL when compiling.
2629 2009-10-17  Eric Ludlam  <zappo@gnu.org>
2631         * semantic/scope.el
2632         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
2633         tmpscope so that the regular scope will continue to work.
2635         * semantic/idle.el (semantic-idle-tag-highlight):
2636         Use semantic-idle-summary-highlight-face as the highlighting.
2638         * ede/project-am.el (project-run-target): New method.
2639         (project-run-target): New method.
2641         * ede.el (ede-target): Add run target menu item.
2642         (ede-project, ede-minor-keymap): Add ede-run-target binding.
2643         (ede-run-target): New function.
2644         (ede-target::project-run-target): New method.
2646         * ede/proj.el (project-run-target): New method.
2648         * ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
2649         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
2650         Add :rules.
2651         (ede-proj-target-makefile-shared-object): Only libtool compilers
2652         now available.  Add linkers for libtool.
2653         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
2654         (ede-proj-makefile-target-name): Always use .la extension.
2656         * ede/proj-prog.el (project-run-target): New method.
2658         * ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
2659         (ede-g++-linker): Change Change link lines.
2661         * ede/pmake.el (ede-pmake-insert-variable-shared):
2662         When searching for old variables, go to the end of the buffer and
2663         search backward from there.
2664         (ede-proj-makefile-automake-insert-subdirs)
2665         (ede-proj-makefile-automake-insert-extradist): New methods.
2666         (ede-proj-makefile-create): Use them.
2668         * ede/pconf.el (ede-proj-configure-test-required-file):
2669         Force FILE to expand to the current target.  Use file-exists-p to
2670         check that it exists.
2672         * ede/linux.el (ede-linux-version): Don't call "head".
2673         (ede-linux-load): Wrap dir in file-name-as-directory.
2674         Set :version slot.
2676         * ede/files.el (ede-get-locator-object): When enabling
2677         locate, do so on "top".
2679         * ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
2680         file-name-as-directory during compare.
2681         (ede-emacs-version): Return Emacs/XEmacs differentiator.
2682         Get version number from different places.  Don't call egrep.
2683         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
2684         to set the directory.
2686         * ede/shell.el: New file.
2688         * inversion.el (inversion-decoders): Allow for stray . in
2689         alpha/beta variants.
2691 2009-10-17  Glenn Morris  <rgm@gnu.org>
2693         * semantic/grammar.el (semantic-grammar--lex-delim-spec):
2694         All errors should have messages.
2696 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
2698         * ede/proj-shared.el (ede-proj-makefile-target-name):
2699         Use .la for Automake.
2701 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
2703         * ede/pconf.el (ede-proj-configure-synchronize):
2704         Use "autoreconf -i".  Suggested by Andreas Schwab.
2706 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
2708         * ede/proj.el (project-make-dist, project-compile-project):
2709         Fix filename test.
2710         (ede-proj-dist-makefile): Use expand-file-name instead of concat
2711         to expand file names.
2713 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
2715         * ede/proj-obj.el (ede-gcc-linker): New var.
2716         (ede-proj-target-makefile-objectcode): Use it.
2718         * ede/source.el (ede-want-any-source-files-p)
2719         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
2720         Return search result.  This error was introduced while merging.
2722 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
2724         * semantic.el (semantic-new-buffer-setup-functions): New option.
2725         (semantic-new-buffer-fcn): Call parser setup functions here.
2726         (semantic-mode): Don't call parser setup functions here, it's done
2727         in semantic-new-buffer-fcn now.
2728         (semantic-mode): Parse all existing buffers when enabled.
2730         * srecode/compile.el (srecode-compile-file):
2731         Call semantic-new-buffer-fcn if the buffer has not been parsed.
2733 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
2735         * ede/pmake.el (ede-pmake-insert-variable-once): Delete.
2737         * ede/proj-comp.el: Don't require ede/pmake at toplevel.
2738         (proj-comp-insert-variable-once): New macro, renamed from
2739         ede-pmake-insert-variable-once in ede/pmake.edl.
2740         (ede-proj-makefile-insert-variables): Use it.
2742 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
2744         * ede/makefile-edit.el (makefile-beginning-of-command)
2745         (makefile-end-of-command):
2746         * srecode/srt-mode.el (semantic-beginning-of-context)
2747         (semantic-end-of-context): Fix previous change.  Doc fixes.
2749 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
2751         * ede/makefile-edit.el (makefile-beginning-of-command)
2752         (makefile-end-of-command):
2753         * semantic/lex.el (semantic-lex-token):
2754         * semantic/analyze/fcn.el
2755         (semantic-analyze-dereference-metatype-1):
2756         * semantic/bovine/c.el (semantic-lex-cpp-define)
2757         (semantic-lex-cpp-undef):
2758         * semantic/wisent/wisent.el (wisent-skip-block):
2759         * srecode/srt-mode.el (semantic-beginning-of-context)
2760         (semantic-end-of-context): Fix typos in docstrings.
2762 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
2764         * ede.el (ede-project-placeholder-cache-file):
2765         * semantic/db-file.el (semanticdb-default-save-directory):
2766         * srecode/map.el (srecode-map-save-file):
2767         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
2769 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
2771         * srecode/insert.el: Require srecode/args.
2773         * srecode/args.el: Require srecode/dictionary instead of
2774         srecode/insert.
2776         * srecode/srt-mode.el (srecode-template-mode): Doc fix.
2778         * files.el (auto-mode-alist): Add .srt and Project.ede.
2780         * semantic.el (semantic-mode):
2781         Handle srecode-template-mode-hook as well.
2782         (semantic-mode): Use js-mode-hook for Javascript hook.
2784         * srecode/template.el: Remove hook variable.
2786         * ede/proj-comp.el: Require ede/pmake when compiling.
2788         * ede.el (ede-target-forms-menu): Don't enable if no
2789         projects exist.
2790         (ede-project-placeholder-cache-file): Default to a file in
2791         user-emacs-directory.
2793         * srecode/map.el (srecode-map-base-template-dir): Look for
2794         templates in data-directory.
2795         (srecode-map-save-file): Default to a file in user-emacs-directory.
2797         * ede/srecode.el (ede-srecode-setup): Use default templates
2798         directory.
2800 2009-09-30  Eric Ludlam  <zappo@gnu.org>
2802         * semantic/util-modes.el (semantic-highlight-func-mode):
2803         Doc fix.
2805         * ede/proj-comp.el (ede-proj-makefile-insert-variables):
2806         Only insert each variable once.
2808         * ede/pmake.el (ede-pmake-insert-variable-once): New macro.
2809         (ede-pmake-insert-variable-shared): Use it.
2811         * ede/cpp-root.el (ede-preprocessor-map): Do not deref table
2812         for lexical table iff table is nil.
2814 2009-10-01  Glenn Morris  <rgm@gnu.org>
2816         * semantic/bovine/gcc.el
2817         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
2818         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
2820 2009-10-03  Glenn Morris  <rgm@gnu.org>
2822         * semantic/db-find.el (data-debug-insert-tag-list): Comment out
2823         declaration, currently false.
2825 2009-10-01  Glenn Morris  <rgm@gnu.org>
2827         * cedet-files.el (cedet-directory-name-to-file-name):
2828         * cedet-idutils.el (cedet-idutils-search)
2829         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
2830         (cedet-idutils-version-check):
2831         * cedet.el (cedet-version):
2832         * data-debug.el (data-debug-insert-overlay-button)
2833         (data-debug-insert-overlay-list-button)
2834         (data-debug-insert-buffer-button)
2835         (data-debug-insert-buffer-list-button)
2836         (data-debug-insert-process-button, data-debug-insert-ring-button)
2837         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
2838         (data-debug-insert-stuff-vector-button)
2839         (data-debug-insert-symbol-button, data-debug-insert-string)
2840         (data-debug-insert-number, data-debug-insert-lambda-expression)
2841         (data-debug-insert-nil, data-debug-insert-simple-thing)
2842         (data-debug-insert-custom, data-debug-edebug-expr):
2843         * ede.el (ede-auto-add-method, ede-project-class-files)
2844         (global-ede-mode-map, ede-new, ede-debug-target)
2845         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
2846         * semantic.el (semantic-minimum-working-buffer-size)
2847         (semantic-fetch-tags, semantic-submode-list)
2848         (semantic-default-submodes):
2849         * ede/source.el (ede-source-match):
2850         * ede/project-am.el (project-am-type-alist, project-add-file)
2851         (project-am-package-info):
2852         * ede/proj.el (ede-proj-target, project-new-target):
2853         * ede/proj-elisp.el (ede-proj-tweak-autoconf):
2854         * ede/proj-comp.el (ede-current-build-list):
2855         * ede/makefile-edit.el (makefile-move-to-macro):
2856         * ede/files.el (ede-toplevel-project-or-nil):
2857         * ede/cpp-root.el (initialize-instance):
2858         * ede/autoconf-edit.el (autoconf-find-last-macro)
2859         (autoconf-parameter-strip, autoconf-insert-new-macro):
2860         * semantic/wisent.el (wisent-lex-eoi):
2861         * semantic/util-modes.el (global-semantic-show-parser-state-mode)
2862         (semantic-show-parser-state-mode):
2863         * semantic/texi.el (semantic-texi-environment-regexp):
2864         * semantic/tag.el (semantic-tag-new-variable)
2865         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
2866         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
2867         (semantic--tag-deep-copy-tag-list)
2868         (semantic-tag-components-with-overlays-default):
2869         * semantic/symref.el (semantic-symref-find-text):
2870         * semantic/senator.el (senator-yank-tag)
2871         (senator-transpose-tags-up):
2872         * semantic/scope.el (semantic-analyze-scoped-tags-default)
2873         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
2874         * semantic/sb.el (semantic-sb-autoexpand-length):
2875         * semantic/lex.el (semantic-lex-comment-regex)
2876         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
2877         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
2878         * semantic/lex-spp.el
2879         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
2880         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
2881         * semantic/idle.el
2882         (semantic-idle-summary-current-symbol-info-brutish)
2883         (semantic-idle-summary-current-symbol-info-default):
2884         * semantic/grammar.el (semantic-grammar-recreate-package)
2885         (semantic--grammar-macro-compl-dict):
2886         * semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
2887         * semantic/format.el (semantic-format-tag-custom-list)
2888         (semantic-format-tag-canonical-name-default):
2889         * semantic/find.el (semantic-find-tag-by-overlay-in-region)
2890         (semantic-find-tags-for-completion)
2891         (semantic-find-tags-by-scope-protection-default)
2892         (semantic-deep-find-tags-for-completion):
2893         * semantic/edit.el
2894         (semantic-edits-incremental-reparse-failed-hook)
2895         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
2896         (semantic-edits-splice-remove, semantic-edits-splice-replace):
2897         * semantic/doc.el (semantic-documentation-comment-preceeding-tag):
2898         * semantic/dep.el (semantic-dependency-include-path):
2899         * semantic/db.el (semanticdb-default-find-index-class)
2900         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
2901         (semanticdb-project-roots):
2902         * semantic/db-find.el (semanticdb-implied-include-tags)
2903         (semanticdb-find-adebug-insert-scanned-tag-cons)
2904         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
2905         (semanticdb-brute-deep-find-tags-for-completion):
2906         * semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
2907         * semantic/ctxt.el (semantic-beginning-of-context-default)
2908         (semantic-end-of-context-default)
2909         (semantic-ctxt-current-function-default)
2910         (semantic-ctxt-scoped-types-default):
2911         * semantic/complete.el (semantic-complete-read-tag-engine)
2912         (semantic-complete-inline-tag-engine)
2913         (semantic-complete-inline-custom-type)
2914         (semantic-complete-read-tag-analyzer):
2915         * semantic/chart.el (semantic-chart-tags-by-class)
2916         (semantic-chart-database-size):
2917         * semantic/analyze.el (semantic-analyze-current-symbol)
2918         (semantic-analyze-current-context):
2919         * semantic/symref/list.el (semantic-symref)
2920         (semantic-symref-hide-buffer, semantic-symref-symbol):
2921         * semantic/symref/grep.el (semantic-symref-grep-use-template):
2922         * semantic/symref/filter.el (semantic-symref-hits-in-region):
2923         * semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
2924         * semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
2925         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
2926         (semantic-c-dereference-template):
2927         * semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
2928         (semantic--analyze-refs-full-lookup-with-parents)
2929         (semantic--analyze-refs-full-lookup-simple):
2930         * semantic/analyze/complete.el
2931         (semantic-analyze-possible-completions):
2932         * srecode/table.el (srecode-mode-table-new):
2933         * srecode/srt.el (srecode-read-variable-name):
2934         * srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
2935         * srecode/semantic.el (srecode-semantic-handle-:tag)
2936         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
2937         * srecode/map.el (srecode-current-map):
2938         * srecode/insert.el (srecode-insert)
2939         (srecode-insert-variable-secondname-handler, srecode-insert-method)
2940         (srecode-template-inserter-point-override)
2941         (srecode-insert-include-lookup):
2942         * srecode/getset.el (srecode-auto-choose-class):
2943         * srecode/extract.el (srecode-inserter-extract):
2944         * srecode/document.el
2945         (srecode-document-autocomment-return-last-alist)
2946         (srecode-document-autocomment-param-type-alist)
2947         (srecode-document-insert-function-comment)
2948         (srecode-document-insert-variable-one-line-comment)
2949         (srecode-document-function-name-comment):
2950         * srecode/dictionary.el (srecode-create-dictionary)
2951         (srecode-compound-toString):
2952         * srecode/compile.el (srecode-flush-active-templates):
2953         * srecode/args.el (srecode-semantic-handle-:blank):
2954         Doc/message fixes.
2956 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
2958         * semantic/wisent/javat-wy.el
2959         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
2961 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
2963         * srecode/expandproto.el: Fix provide statement.
2965 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
2967         * ede/srecode.el: Fix provide statement.
2969 2009-09-30  Glenn Morris  <rgm@gnu.org>
2971         * ede/proj.el (ede-proj-target-makefile-miscelaneous):
2972         * ede/proj-aux.el (ede-aux-source):
2973         * ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
2974         (ede-misc-source):
2975         * semantic/mru-bookmark.el (semantic-mrub-completing-read)
2976         (semantic-mrub-switch-tags): Fix doc typos.
2978         * semantic/db-global.el (data-debug-new-buffer)
2979         (data-debug-insert-thing): Remove unneeded declarations (one broken).
2980         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
2982         * semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
2984         * semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
2985         use of CL function `remove-if-not'.
2987 2009-09-29  Glenn Morris  <rgm@gnu.org>
2989         * semantic/symref/idutils.el:
2990         * semantic/symref/list.el: Relicense under GPLv3+.
2992         * ede/srecode.el (srecode-resolve-arguments): Fix declaration.
2994         * semantic/complete.el (semantic-displayor-focus-abstract-child-p):
2995         * semantic/tag-file.el (semanticdb-table-child-p):
2996         * srecode/compile.el (srecode-template-inserter-newline-child-p):
2997         Mark declarations not understood by check-declare.
2999 2009-09-28  Eric Ludlam  <zappo@gnu.org>
3001         CEDET (development tools) package merged.
3003         * *.el:
3004         * ede/*.el:
3005         * semantic/*.el:
3006         * srecode/*.el: New files.
3008 2009-09-28  Eric Ludlam  <zappo@gnu.org>
3010         * cedet-cscope.el:
3011         * cedet-files.el:
3012         * cedet-global.el:
3013         * cedet-idutils.el:
3014         * data-debug.el:
3015         * inversion.el:
3016         * mode-local.el:
3017         * pulse.el: New files.
3019 ;; Local Variables:
3020 ;; coding: utf-8
3021 ;; End:
3023         Copyright (C) 2009-2013 Free Software Foundation, Inc.
3025   This file is part of GNU Emacs.
3027   GNU Emacs is free software: you can redistribute it and/or modify
3028   it under the terms of the GNU General Public License as published by
3029   the Free Software Foundation, either version 3 of the License, or
3030   (at your option) any later version.
3032   GNU Emacs is distributed in the hope that it will be useful,
3033   but WITHOUT ANY WARRANTY; without even the implied warranty of
3034   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3035   GNU General Public License for more details.
3037   You should have received a copy of the GNU General Public License
3038   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.