ChangeLog fix
[bpt/emacs.git] / lisp / cedet / ChangeLog
CommitLineData
9c61f806
GM
12013-12-28 Glenn Morris <rgm@gnu.org>
2
3 * ede/linux.el (project-linux-build-directory-default)
bb098075 4 (project-linux-architecture-default): Fix custom types. Add version.
9c61f806 5
b0fe992f
DE
62013-12-12 David Engster <deng@randomsample.de>
7
9c61f806
GM
8 * semantic/analyze.el (semantic-analyze-find-tag-sequence-default):
9 Always add scope to the local miniscope for each type. Otherwise,
10 structure tags are not analyzed correctly. Also, always search
11 the extended miniscope even when not dealing with types.
b0fe992f
DE
12
13 * semantic/ctxt.el (semantic-get-local-variables-default): Also
14 try to parse local variables for buffers which are currently
15 marked as unparseable. Otherwise, it is often impossible to
16 complete local variables.
17
18 * semantic/scope.el (semantic-analyze-scoped-types-default): If we
19 cannot find a type in the typecache, also look into the the types
20 we already found. This is necessary since in C++, a 'using
21 namespace' can be dependend on a previous one.
22 (semantic-completable-tags-from-type): When creating the list of
23 completable types, pull in types which are referenced through
24 'using' statements, and also preserve their filenames.
25
26 * semanitc/bovine/c.el (semantic/analyze/refs): Require.
27 (semantic-analyze-tag-references): New override. Mainly copied
28 from the default implementation, but if nothing could be found (or
29 just the tag itself), drop all namespaces from the scope and
30 search again. This is necessary for implementations which are
31 defined outside of the namespace and only pull those in through
32 'using' statements.
33 (semantic-ctxt-scoped-types): Go through all tags around point and
34 search them for using statements. In the case for using
35 statements outside of function scope, append them in the correct
36 order instead of using 'cons'. This is important since using
37 statements may depend on previous ones.
38 (semantic-expand-c-tag-namelist): Do not try to parse struct
39 definitions as default values. The grammar parser seems to return
40 the point positions slightly differently (as a cons instead of a
41 list). Also, set parent for typedefs to 'nil'. It does not
42 really make sense to set a parent class for typedefs, and it can
43 also lead to endless loops when calculating scope.
44 (semantic-c-reconstitute-token): Change handling of function
45 pointers; instead of seeing them as variables, handle them as
46 functions with a 'function-pointer' attribute. Also, correctly
47 deal with function pointers as function arguments.
48 (semantic-c-reconstitute-function-arglist): New function to parse
49 function pointers inside an argument list.
50 (semantic-format-tag-name): Use 'function-pointer' attribute
51 instead of the old 'functionpointer-flag'.
52 (semantic-cpp-lexer): Use new `semantic-lex-spp-paren-or-list'.
53
54 * semantic/bovine/gcc.el (semantic-gcc-setup): Add 'features.h' to
55 the list of files whose preprocessor symbols are included. This
56 pulls in things like __USE_POSIX and similar.
57
58 * semantic/format.el (semantic-format-tag-prototype-default):
59 Display default values if available.
60
61 * semantic/analyze/refs.el (semantic-analyze-refs-impl)
62 (semantic-analyze-refs-proto): Add 'default-value' as ignorable in
63 call to `semantic-tag-similar-p'.
64
65 * semantic/db-mode.el (semanticdb-semantic-init-hook-fcn): Always
66 set buffer for `semanticdb-current-table'.
67
68 * semantic/db.el (semanticdb-table::semanticdb-refresh-table): The
69 previous change turned up a bug in this method. Since the current
70 table now correctly has a buffer set, the first clause in the
71 `cond' would be taken, but there was a `save-excursion' missing.
72
73 * semantic/lex-spp.el (semantic-c-end-of-macro): Declare.
74 (semantic-lex-spp-token-macro-to-macro-stream): Deal with macros
75 which open/close a scope. For this, leave an overlay if we
76 encounter a single open paren and return a semantic-list in the
77 lexer. When this list gets expanded, retrieve the old position
78 from the overlay. See the comments in the function for further
79 details.
80 (semantic-lex-spp-find-closing-macro): New function to find the
81 next macro which closes scope (i.e., has a closing paren).
82 (semantic-lex-spp-replace-or-symbol-or-keyword): Go to end of
83 closing macro if necessary.
84 (semantic-lex-spp-paren-or-list): New lexer to specially deal with
85 parens in macro definitions.
86
87 * semantic/decorate/mode.el (semantic-decoration-mode): Do not
88 decorate available tags immediately but in an idle timer, since
89 EDE will usually not be activated yet, which will make it
90 impossible to find project includes.
91
92 * semantic/decorate/include.el
93 (semantic-decoration-on-includes-highlight-default): Remove
94 'unloaded' from throttle when decorating includes, otherwise all
95 would be loaded. Rename 'table' to 'currenttable' to make things
96 clearer.
97
98 * ede/linux.el (cl): Require during compile.
99
1002013-12-12 Lluís Vilanova <xscript@gmx.net>
101
102 * ede/linux.el (project-linux-build-directory-default)
103 (project-linux-architecture-default): Add customizable variables.
104 (ede-linux-project): Add additional slots to track Linux-specific
105 information (out-of-tree build directory and selected
106 architecture).
107 (ede-linux--get-build-directory, ede-linux--get-archs)
108 (ede-linux--detect-architecture, ede-linux--get-architecture)
109 (ede-linux--include-path): Added function to detect Linux-specific
110 information.
111 (ede-linux-load): Set new Linux-specific information when creating
112 a project.
113 (ede-expand-filename-impl): Use new and more accurate include
114 information.
115
1162013-12-12 Eric Ludlam <zappo@gnu.org>
117
118 * semantic/scope.el (semantic-calculate-scope): Return a clone of
119 the scopecache, so that everyone is working with its own (shallow)
120 copy. Otherwise, if one caller is resetting the scope, it would
121 be reset for all others working with the scope cache as well.
122
1232013-12-12 Alex Ott <alexott@gmail.com>
124
125 * ede/generic.el (project-run-target): Remove incorrect require.
126
127 * semantic/format.el (semantic-format-tag-prototype-default): Use
128 concat only for strings.
129
f9b697dd
GM
1302013-11-30 Glenn Morris <rgm@gnu.org>
131
132 Stop keeping (most) generated cedet grammar files in the repository.
133 * semantic/bovine/grammar.el (bovine--make-parser-1):
134 New function, split from bovine-make-parsers.
135 (bovine-make-parsers): Use bovine--make-parser-1.
136 (bovine-batch-make-parser): New function.
137 * semantic/wisent/grammar.el (wisent--make-parser-1):
138 New function, split from wisent-make-parsers.
139 (wisent-make-parsers): Use wisent--make-parser-1.
140 (wisent-batch-make-parser): New function.
141 * semantic/db.el (semanticdb-save-all-db):
142 Avoid prompting in batch mode.
143 * semantic/grammar.el (semantic-grammar-footer-template):
144 Disable version-control and autoloads in the output.
145 (semantic-grammar-create-package):
146 Add option to return nil if output is up-to-date.
147 * semantic/bovine/c-by.el, semantic/bovine/make-by.el:
148 * semantic/bovine/scm-by.el, semantic/wisent/javat-wy.el:
149 * semantic/wisent/js-wy.el, semantic/wisent/python-wy.el:
150 * srecode/srt-wy.el: Remove generated files from repository.
151
86eaab89 1522013-11-16 Barry O'Reilly <gundaetiapo@gmail.com>
2bde2cf1
BR
153
154 * semantic/fw.el (semantic-exit-on-input)
155 (semantic-throw-on-input): Restore point before
156 accept-process-output because timers which redisplay can run.
157 (Bug#15045)
158
295559b0
JB
1592013-11-03 Johan Bockgård <bojohan@gnu.org>
160
161 * semantic/lex.el (semantic-lex-start-block)
162 (semantic-lex-end-block): Move after definition of
163 semantic-lex-token macro.
164
bed64093
BR
1652013-10-28 Barry O'Reilly <gundaetiapo@gmail.com>
166
167 * semantic/idle.el (semantic-idle-symbol-highlight)
168 (semantic-idle-symbol-highlight-face): Define face with defface
169 and obsolete the replaced one defined with defvar. (Bug#15745)
170 * pulse.el (pulse-momentary-highlight-overlay)
171 (pulse-momentary-highlight-region): Fix typo in doc
172
2388ae79
GM
1732013-10-30 Glenn Morris <rgm@gnu.org>
174
175 * semantic/grammar.el (semantic-grammar-mode-keywords-2)
176 (semantic-grammar-mode-keywords-3): Handle renamed font-lock vars.
177
43ad632e
JB
1782013-10-20 Johan Bockgård <bojohan@gnu.org>
179
2388ae79
GM
180 * semantic/db-mode.el (global-semanticdb-minor-mode):
181 Remove hooks correctly.
182 (semanticdb-toggle-global-mode): Pass `toggle' to minor mode function.
43ad632e 183
e090f499
LL
1842013-09-28 Leo Liu <sdl.web@gmail.com>
185
2388ae79
GM
186 * semantic/texi.el (semantic-analyze-possible-completions):
187 Use ispell-lookup-words instead. (Bug#15460)
e090f499 188
1e835c22
GM
1892013-09-20 Glenn Morris <rgm@gnu.org>
190
191 * semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p):
192 Move from here...
193 * semantic/fw.el: ...to here.
194
0a9600e0
GM
1952013-09-18 Glenn Morris <rgm@gnu.org>
196
74be3de1
GM
197 * semantic/find.el (semantic-brute-find-first-tag-by-name):
198 Replace obsolete function assoc-ignore-case with assoc-string.
199
0a9600e0
GM
200 * semantic/complete.el (tooltip-mode, tooltip-frame-parameters)
201 (tooltip-show): Declare.
202
049c405a
SM
2032013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
204
205 * semantic/symref/list.el (semantic-symref-results-mode):
206 Use define-derived-mode.
207 (semantic-symref-produce-list-on-results): Set up the results here
208 instead of in semantic-symref-results-mode. Move after
209 semantic-symref-current-results's defvar now that it refers to that var.
210 (semantic-symref-auto-expand-results)
211 (semantic-symref-results-summary-function)
212 (semantic-symref-results-mode-hook): Remove redundant :group arg.
213 (semantic-symref, semantic-symref-symbol, semantic-symref-regexp):
214 Initialize directly in the let.
215
a89f3fdf
GM
2162013-09-13 Glenn Morris <rgm@gnu.org>
217
218 * semantic/ia.el (semantic-ia-complete-symbol-menu):
219 Comment it out, since it cannot work. (Bug#14522)
220
da0752f9
GM
2212013-09-12 Glenn Morris <rgm@gnu.org>
222
223 * semantic/find.el (semantic-find-first-tag-by-name):
224 Replace obsolete function assoc-ignore-case with assoc-string.
225
1b3b87df
SM
2262013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
227
228 * semantic/grammar.el (semantic-grammar-mode): Use define-derived-mode.
229 (semantic-grammar-mode-syntax-table): Rename from
230 semantic-grammar-syntax-table.
231 (semantic-grammar-mode-map): Rename from semantic-grammar-map.
232 * data-debug.el (data-debug-mode-map): Rename from data-debug-map.
233 (data-debug-mode): Use define-derived-mode.
234
2a6f4174
GM
2352013-09-05 Glenn Morris <rgm@gnu.org>
236
237 * semantic/fw.el (semantic-make-local-hook):
238 Simplify by dropping Emacs <= 20.
239
3696fe8a 2402013-07-29 David Engster <deng@randomsample.de>
18657165
DE
241
242 * lisp/cedet/cedet.el (cedet-packages): Remove speedbar since its
243 development does no longer happens in CEDET upstream but in Emacs
244 proper. Also remove cedet-contrib and cogre since those are only
245 in upstream.
246
247 * semantic/analyze/fcn.el (semantic-analyze-type-to-name): If TYPE
248 has a parent, return a fully qualified name.
249
250 * semantic/decorate/mode.el
251 (semantic-decoration-on-includes-p-default)
1b3b87df 252 (semantic-decoration-on-includes-highlight-default): Declare for
18657165
DE
253 byte compiler.
254
255 * semantic/wisent/python.el (semantic/format): New require.
256
3696fe8a 2572013-07-27 Eric Ludlam <zappo@gnu.org>
25ac1ded 258
1b3b87df
SM
259 * lisp/cedet/semantic/edit.el (semantic-edits-splice-remove):
260 Wrap debug message removing middle tag in semantic-edits-verbose-flag
25ac1ded
DE
261 check.
262
3696fe8a 2632013-07-27 David Engster <deng@randomsample.de>
25ac1ded
DE
264
265 * semantic/bovine/el.el (semantic/db-el): New require.
266
267 * semantic/db-el.el (semanticdb-normalize-one-tag): It might be
268 that a symbol comes from a file but cannot be found in its table.
269 This happens for instance when a symbol was dynamically created
270 through a macro like `defstruct'. In this case, return the
271 original tag.
272 (semanticdb-elisp-sym->tag): Deal with autoloaded functions, where
273 the argument list is not available until the file is loaded.
274
12059709
SM
2752013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
276
277 * data-debug.el, cedet-idutils.el: Neuter the "Version:" header.
278
6e0e82a0 2792013-06-19 Glenn Morris <rgm@gnu.org>
c5803bd7
GM
280
281 * semantic/idle.el (define-semantic-idle-service):
282 No need to use eval-and-compile, progn will do.
3883037b
GM
283
284 * semantic/decorate/mode.el (define-semantic-decoration-style):
285 Doc fix.
286 (define-semantic-decoration-style): 'function is not an accepted
287 value for autoload's "type" argument. Might as well use the default.
288
33f7372e
GM
2892013-06-18 Glenn Morris <rgm@gnu.org>
290
291 * semantic/ctxt.el (semantic-ctxt-end-of-symbol-default):
292 Remove unused free variable `symlist'.
293
4f405069 2942013-06-02 Eric Ludlam <zappo@gnu.org>
890f7890 295
33f7372e
GM
296 * semantic/edit.el (semantic-change-function):
297 Use `save-match-data' around running hooks.
890f7890
DE
298
299 * semantic/decorate/mode.el
300 (semantic-decorate-style-predicate-default)
301 (semantic-decorate-style-highlighter-default): New.
302 (semantic-decoration-mode): Do not require
303 `semantic/decorate/include' anymore.
304 (semantic-toggle-decoration-style): Error if an unknown decoration
305 style is toggled.
1b3b87df
SM
306 (define-semantic-decoration-style): Add new :load option.
307 When :load is specified, add autoload tokens for the definition
890f7890
DE
308 functions so that code is loaded when the mode is used.
309 (semantic-decoration-on-includes): New autoload definition for
310 highlighting includes.
311
312 * semantic/bovine/c.el (semantic-lex-c-ifdef): Allow some misc
313 characters to appear after the tested variable.
314
315 * semantic/ede-grammar.el (project-compile-target): Calculate full
316 src name via ede-expand-filename instead of the crutch of the
317 current buffer. Enables this target to compile in batch mode.
318
319 * semantic/idle.el
320 (semantic-idle-symbol-maybe-highlight): Wrap highlighting of
321 remote symbol with `save-excursion'.
322 (semantic-idle-scheduler-work-parse-neighboring-files): Instead of
323 using directory-files on each found mode pattern, collect all the
324 patterns for the current mode, and then for each file, see if it
325 matches any of them. If it does, parse the file. (Patch
326 inspiration from Tomasz Gajewski.)
327
328 * semantic/ctxt.el (semantic-ctxt-end-of-symbol): New.
329 (semantic-ctxt-current-symbol-default): New.
330
1b3b87df
SM
331 * semantic/bovine/el.el (semantic-default-elisp-setup):
332 Add autoload cookie. Explain existence.
890f7890
DE
333 (footer): Add local variable for loaddefs.
334
335 * semantic/db.el (semanticdb-file-table-object): Add new filter,
336 only checking for regular files too.
337
338 * semantic/wisent/python.el
339 (semantic-format-tag-abbreviate): New override. Cuts back on size
340 of code tags.
341
342 * srecode/compile.el (srecode-compile-templates): Fix warning
4f405069 343 punctuation. Remove status messages to clean up testing output.
890f7890
DE
344
345 * ede/base.el (ede-project-placeholder-cache-file): Update doc to
346 mention 'nil' value.
347 (ede-save-cache): Disable cache save if file is nil.
348
349 * ede.el (ede-initialize-state-current-buffer): Flush deleted
350 projects.
351 (global-ede-mode): Always append our find-file-hook to the end.
352 (ede-flush-deleted-projects): New command.
353
354 * ede/cpp-root.el (ede-preprocessor-map): Protect against init
355 problems.
356
1b3b87df 357 * ede/proj.el (ede-proj-target): Add a new "custom" option for
890f7890
DE
358 custom symbols representing a compiler or linker instead of
359 restricting things to only the predefined compilers and linkers.
360
4f405069 3612013-06-02 David Engster <dengste@eml.cc>
890f7890
DE
362
363 * semantic.el (semantic-mode-map): To avoid showing showing
364 Development menu twice, only disable menu item if menu-bar is
365 actually enabled, otherwise the popup 'global menu' might display
366 a disabled Development menu.
367
caaeb0e8
DE
368 * srecode/srt-wy.el: Regenerate.
369
890f7890
DE
3702013-06-02 Pete Beardmore <elbeardmorez@msn.com>
371
372 * semantic/complete.el
373 (semantic-displayor-show-request): Fix which slot in obj is set to
374 the max tags.
375
fb2c90ac
GM
3762013-06-01 Glenn Morris <rgm@gnu.org>
377
7225c832
GM
378 * semantic/grammar.el (semantic-grammar-complete):
379 Replace the obsolete function lisp-complete-symbol.
380
e677c726
GM
381 * semantic/analyze/fcn.el (semantic-tag-similar-p): Autoload.
382
383 * srecode/args.el, srecode/java.el: Require ede.
384
fb2c90ac
GM
385 * semantic/lex.el (semantic-lex-make-type-table): Fix transposed args.
386
e670054b
GM
3872013-05-24 Glenn Morris <rgm@gnu.org>
388
389 * semantic/bovine/grammar.el (bovine-make-parsers):
390 Avoid free variable `copyright-end'.
391
392 * semantic/bovine/c-by.el (semantic-parse-region):
393 * semantic/wisent/javat-wy.el (semantic-parse-region):
394 * semantic/wisent/js-wy.el (semantic-parse-region):
395 * semantic/wisent/python-wy.el (semantic-parse-region): Declare.
396
0cdffd7d
GM
3972013-05-22 Glenn Morris <rgm@gnu.org>
398
399 * ede/speedbar.el (ede-file-find, ede-tag-find):
400 * semantic/sb.el (semantic-sb-token-jump):
401 Use dframe-maybee-jump-to-attached-frame rather than speedbar- alias.
402
ed8be7ff
GM
4032013-05-15 Glenn Morris <rgm@gnu.org>
404
405 * semantic/symref/list.el (semantic-symref-auto-expand-results)
406 (semantic-symref-results-mode-hook)
407 (semantic-symref-results-summary-function): Fix :group.
408
bf8154b1
GM
4092013-05-14 Glenn Morris <rgm@gnu.org>
410
411 * ede/simple.el, semantic/java.el: Set generated-autoload-load-name.
412
99fb2756
GM
4132013-05-11 Glenn Morris <rgm@gnu.org>
414
6b91f903
GM
415 * ede/project-am.el, semantic/db-ebrowse.el, semantic/grammar.el:
416 * semantic/sb.el, semantic/bovine/grammar.el, semantic/wisent/comp.el:
417 * semantic/wisent/grammar.el, semantic/wisent/wisent.el:
418 * srecode/fields.el: Set generated-autoload-load-name (for cus-load).
419
f20def1f
GM
420 * ede/locate.el (cedet-cscope-version-check)
421 (cedet-cscope-support-for-directory):
422 * semantic/grammar.el (semantic-grammar-wy--install-parser):
423 Fix declarations.
424
99fb2756
GM
425 * ede/project-am.el (project-am-compile-project-command): Fix :type.
426
a931698a
GM
4272013-05-09 Glenn Morris <rgm@gnu.org>
428
429 * semantic/db-find.el (semanticdb-find-throttle-custom-list):
430 Fix value.
431
201dbb58
DE
4322013-04-27 David Engster <deng@randomsample.de>
433
434 * semantic/complete.el
1b3b87df
SM
435 (semantic-collector-calculate-completions-raw):
436 If `completionslist' is not set, refresh the cache if necessary and
201dbb58
DE
437 use it for completions. This fixes the
438 `semantic-collector-buffer-deep' collector (bug#14265).
439
08bb5ee2
LL
4402013-03-26 Leo Liu <sdl.web@gmail.com>
441
1b3b87df
SM
442 * semantic/senator.el (senator-copy-tag-to-register):
443 Move register handling logic from register.el. (Bug#14052)
08bb5ee2 444
e8cc7880
DE
4452013-03-21 Eric Ludlam <zappo@gnu.org>
446
447 * semantic.el (navigate-menu): Yank Tag :enable. Make sure
448 `senator-tag-ring' is bound.
449 (semantic-parse-region-default): Stop reversing the output of
450 parse-whole-stream.
451 (semantic-repeat-parse-whole-stream): Append returned tags
452 differently, so they come out in the right order.
453
454 * semantic/sb.el (semantic-sb-filter-tags-of-class): New option.
455 (semantic-sb-fetch-tag-table): Filter tags being bucketed to
456 exclude tags belonging to above filtered classes.
457
458 * semantic/find.el (semantic-filter-tags-by-class): New function.
459
1b3b87df
SM
460 * semantic/tag-ls.el (semantic-tag-similar-p-default):
461 Add short-circuit in case tag1 and 2 are identical.
e8cc7880
DE
462
463 * semantic/analyze/fcn.el
1b3b87df
SM
464 (semantic-analyze-dereference-metatype-stack):
465 Use `semantic-tag-similar-p' instead of 'eq' when comparing two tags
e8cc7880 466 during metatype evaluation in case they are the same, but not the
4f405069 467 same node. (Tweaked patch from Tomasz Gajewski) (Tiny change)
e8cc7880 468
1b3b87df
SM
469 * semantic/db-find.el (semanticdb-partial-synchronize):
470 Fix require to semantic/db-typecache to be correct.
e8cc7880
DE
471 (semanticdb-find-tags-external-children-of-type): Make this a
472 brutish search by default.
473
474 * semantic/sort.el
475 (semantic-tag-external-member-children-default): When calling
476 `semanticdb-find-tags-external-children-of-type', pass in the
477 input tag as the place to start searching for externally defined
478 methods.
479
1b3b87df
SM
480 * semantic/db-file.el (semanticdb-default-save-directory):
481 Doc fix: Add ref to default value.
e8cc7880 482
1b3b87df
SM
483 * semantic/complete.el (semantic-complete-post-command-hook):
484 When detecting if cursor is outside completion area, do so if cursor
e8cc7880
DE
485 moves before start of overlay, or the original starting location
486 of the overlay (i.e., if user deletes past beginning of the
487 overlay region).
488 (semantic-complete-inline-tag-engine): Initialize original start
489 of `semantic-complete-inline-overlay'.
490
1b3b87df
SM
491 * semantic/bovine/c.el (semantic-c-describe-environment):
492 Update some section titles. Test semanticdb table before printing it.
e8cc7880
DE
493 (semantic-c-reset-preprocessor-symbol-map): Update
494 `semantic-lex-spp-macro-symbol-obarray' outside the loop over all
495 the files contributing to its value.
496 (semantic-c-describe-environment): If there is an EDE project but
497 no spp symbols from it, say so.
498
499 * srecode/args.el (srecode-semantic-handle-:project): New argument
4f405069 500 handler. Provide variable values if not in an EDE project.
e8cc7880
DE
501
502 * srecode/srt-mode.el (srecode-template-mode): Fix typo on srecode
503 name.
504
505 * srecode/cpp.el (srecode-semantic-handle-:c): Replace all
506 characters in FILENAME_SYMBOL that aren't valid CPP symbol chars.
507
1b3b87df
SM
508 * srecode/map.el (srecode-map-validate-file-for-mode):
509 Force semantic to load if it is not active in the template being added
e8cc7880
DE
510 to the map.
511
512 * srecode/srt.el: Add local variables for setting the autoload
513 file name.
4f405069 514 (srecode-semantic-handle-:srt): New autoload cookie.
e8cc7880
DE
515
516 * ede.el (ede-apply-preprocessor-map): Apply map to
517 `semantic-lex-spp-project-macro-symbol-obarray' instead of the
4f405069 518 system one. Add require for semantic.
e8cc7880
DE
519
520 * ede/proj-elisp.el (ede-update-version-in-source): In case a file
521 has both a version variable and a Version: comment, always use
522 `call-next-method'.
523
1b3b87df 524 * ede/cpp-root.el (ede-set-project-variables): Delete.
e8cc7880
DE
525 `ede-preprocessor-map' does the job this function was attempting
526 to do with :spp-table.
527 (ede-preprocessor-map): Update file tests to provide better
528 messages. Do not try to get symbols from a file that is the file
529 in the current buffer.
530
531 * ede/base.el (ede-project-placeholder): Add more documentation to
532 :file slot.
533 (ede-load-cache): Use `insert-file-contents' instead of
534 `find-file-noselect' in order to avoid activating other tools.
535
5362013-03-21 David Engster <deng@randomsample.de>
537
538 * semantic/bovine/c.el (semantic-get-local-variables): Also add a
1b3b87df
SM
539 new variable 'this' if we are in an inline member function.
540 For detecting this, we check overlays at point if there is a class
e8cc7880
DE
541 spanning the current function. Also, the variable 'this' has to
542 be a pointer.
543
544 * semantic/bovine/gcc.el (semantic-gcc-setup): Fail gracefully
545 when querying g++ for defines returns an error.
546
547 * srecode/srt-mode.el:
548 * srecode/compile.el:
549 * semantic/elp.el:
550 * semantic/db-el.el:
551 * semantic/complete.el:
552 * ede.el:
553 * cogre.el:
554 * srecode/table.el:
555 * srecode/mode.el:
556 * srecode/insert.el:
557 * srecode/compile.el:
558 * semantic/decorate/include.el:
559 * semantic/db.el:
560 * semantic/adebug.el:
561 * ede/auto.el:
562 * srecode/dictionary.el:
563 * semantic/ede-grammar.el:
564 * semantic/db.el:
565 * semantic/db-find.el:
566 * semantic/db-file.el:
567 * semantic/complete.el:
568 * semantic/bovine/c.el:
569 * semantic/analyze.el:
570 * ede/util.el:
571 * ede/proj.el:
572 * ede/proj-elisp.el:
573 * ede/pconf.el:
574 * ede/locate.el:
575 * ede.el: Adapt to EIEIO namespace cleanup: Rename `object-name'
576 to `eieio-object-name', `object-set-name-string' to
577 `eieio-object-set-name-string', `object-class' to
578 `eieio-object-class', `class-parent' to `eieio-class-parent',
579 `class-parents' to `eieio-class-parents', `class-children' to
580 `eieio-class-children', `object-name-string' to
581 `eieio-object-name-string', `object-class-fast' to
4f405069 582 `eieio--object-class'. Also replace direct access with new
e8cc7880
DE
583 accessor functions.
584
4f405069 5852013-03-21 Tomasz Gajewski <tomga@wp.pl> (tiny change)
e8cc7880 586
1b3b87df
SM
587 * ede/cpp-root.el (ede-project-autoload, initialize-instance):
588 Fix EDE file symbol to match rename. Fix ede-cpp-root symbol to
e8cc7880
DE
589 include -project in name.
590
4f405069 5912013-03-21 Alex Ott <alexott@gmail.com>
e8cc7880 592
1b3b87df
SM
593 * cedet-files.el (cedet-files-list-recursively): New.
594 Recursively find files whose names are matching to given regex.
e8cc7880
DE
595
596 * ede.el (ede-current-project): Rewrite to avoid imperative style.
597
598 * ede/files.el (ede-find-file): Simplify code.
599
600 * ede/base.el (ede-normalize-file/directory): Add function to
601 normalize :file or :directory slots if they are missing.
602
603 * ede/cpp-root.el (ede-cpp-root-project): Add compile-command
604 slot.
605 (project-compile-project): Compiles project using value specified
606 in :compule-command slot or in compile-command local variable.
607 Value of slot or local variable could be string or function that
608 receives project and should return string that will be invoked as
609 command.
4f405069 610 (project-compile-target): Invokes compilation of whole project.
e8cc7880
DE
611
612 * ede/files.el (ede-find-project-root): New function to
613 find root of project that contains specific file.
614 (ede-files-find-existing): New function which checks presence of
615 given directory in the list of registered projects.
616
f5572543
PE
6172013-03-04 Paul Eggert <eggert@cs.ucla.edu>
618
39004030
PE
619 * semantic/wisent/wisent.el (wisent): Stick to ASCII in the ASCII art.
620
f5572543
PE
621 * semantic/wisent/javat-wy.el: Regenerate.
622
020423c2
SM
6232012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
624
625 * semantic/fw.el (semantic-make-local-hook, semantic-mode-line-update):
626 Simplify via CSE.
627
96e05507 6282012-11-16 David Engster <deng@randomsample.de>
22b762c7 629
020423c2
SM
630 * semantic/symref/list.el (semantic-symref-symbol):
631 Use `semantic-complete-read-tag-project' instead of
22b762c7
DE
632 `semantic-complete-read-tag-buffer-deep', since the latter is not
633 working correctly.
634
020423c2
SM
635 * semantic/symref.el (semantic-symref-result-get-tags):
636 Use `find-buffer-visiting' to follow symbolic links.
22b762c7
DE
637
638 * semantic/fw.el (semantic-find-file-noselect): Always set
639 `enable-local-variables' to `:safe' when loading files.
640
96e05507 6412012-11-16 Glenn Morris <rgm@gnu.org>
7b1bf173
GM
642
643 * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
644 * semantic/util.el (semantic-describe-buffer):
645 * semantic/bovine/c.el (semantic-c-parse-lexical-token)
646 (semantic-default-c-setup):
647 Use new names for hooks rather than obsolete aliases.
648
f78ee6af 6492012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
237b5653
SM
650
651 * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
652 * semantic/grammar.el (semantic-grammar-mode):
653 * semantic/util-modes.el (semantic-highlight-edits-mode)
654 (semantic-show-parser-state-mode): Avoid obsolete name
655 semantic-edits-new-change-hooks (bug#12869).
656
f78ee6af 6572012-11-13 Glenn Morris <rgm@gnu.org>
418b1830
GM
658
659 * srecode/srt-mode.el (srecode-template-mode):
660 Don't change global values of comment-start, comment-end. (Bug#12781)
661
3f2a848d
DE
6622012-10-25 David Engster <deng@randomsample.de>
663
237b5653
SM
664 * semantic/analyze.el (semantic-analyze-dereference-alias):
665 New function to dereference aliases.
3f2a848d
DE
666 (semantic-analyze-current-context-default): Use it.
667
668 * semantic/grammar.el (semantic-grammar-create-package):
669 * srecode/compile.el (srecode-compile-templates): Throw a proper
670 error if semantic-mode is not enabled (bug#9968).
671
672 Compiler warning fixes:
673
674 * semantic.el (semantic-elapsed-time): Make it a defsubst.
675
237b5653
SM
676 * srecode/dictionary.el (srecode-adebug-dictionary):
677 Remove require for `semantic'.
3f2a848d
DE
678
679 * srecode/map.el:
680 * srecode/insert.el: Declare functions from `data-debug'.
681
682 * semantic/grammar.el: Require `help-fns'. Declare functions from
683 `eldoc', which is required in function body.
684
685 * srecode/java.el:
686 * semantic/texi.el:
687 * semantic/grammar-wy.el:
688 * semantic/db-file.el:
689 * semantic/db-el.el:
690 * semantic/chart.el: Fix requires.
691
4f405069 692 * ede/locate.el: Remove useless requires. Declare functions
3f2a848d
DE
693 instead and require in functions when needed.
694
d1069532
SM
6952012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
696
697 * semantic/db-file.el (semanticdb-save-database-functions):
698 * semantic/lex.el (semantic-lex-reset-functions):
699 * semantic/edit.el (semantic-change-functions)
700 (semantic-edits-new-change-functions)
701 (semantic-edits-delete-change-functions)
702 (semantic-edits-reparse-change-functions): Don't use "-hooks" suffix.
703
bf659b3f
DE
7042012-10-14 David Engster <deng@randomsample.de>
705
d1069532
SM
706 * semantic.el (semantic-error-if-unparsed): New function.
707 Raise error if buffer was not parsed by Semantic (bug #12045).
bf659b3f
DE
708 (navigate-menu, edit-menu, cedet-menu-map): Enable Semantic items
709 only if buffer was parsed. Also, replace ':active' with ':enable'
710 where necessary.
711
712 * semantic/wisent/python.el
d1069532
SM
713 (semantic-python-get-system-include-path):
714 Use `python-shell-internal-send-string' if available to query Python
bf659b3f
DE
715 for system paths.
716
0b4eec47 717 * semantic/senator.el (senator-next-tag, senator-previous-tag)
bf659b3f
DE
718 (senator-go-to-up-reference): Use `semantic-error-if-unparsed'.
719
0b4eec47
DE
720 * semantic/complete.el (semantic-complete-jump-local)
721 (semantic-complete-jump, semantic-complete-jump-local-members)
bf659b3f
DE
722 (semantic-complete-self-insert): Use `semantic-error-if-unparsed'.
723 (semantic-complete-inline-project): Fix autoload cookie.
724
725 * semantic/analyze/complete.el
726 (semantic-analyze-possible-completions): Check if buffer was
727 parsed. Only raise an error if function was called interactively,
728 otherwise silently return nil.
729
730 * cedet.el (cedet-menu-map): Fix copy&paste typo in menu creation.
731
0b4eec47 7322012-10-08 David Engster <deng@randomsample.de>
caec1ef5
DE
733
734 * semantic/bovine/el.el: Add `semantic-default-elisp-setup' to
735 `emacs-lisp-mode-hook'. This was accidentally removed during the
736 CEDET update (2012-10-01T18:10:29Z!cyd@gnu.org).
737
740877cd
DE
7382012-10-07 David Engster <deng@randomsample.de>
739
740 * semantic/wisent/python.el (semantic-ctxt-current-function)
741 (semantic-ctxt-current-assignment): New overrides, simply
742 returning nil. The defaults do not work correctly and can send
e499e607 743 the parser in an infinite loop (bug#12458).
31e4cc2a
DE
744
745 * semantic/ede-grammar.el (project-compile-target): Fix grammar
746 compilation after introduction of %provide statement.
747
9322b306
DE
748 * semantic.el (semantic-new-buffer-setup-functions): Remove setup
749 function for `f90-mode', since the parser only exists upstream.
750
d1a1c7e6
GM
7512012-10-06 Glenn Morris <rgm@gnu.org>
752
753 * semantic/complete.el (semantic-displayor-tooltip-max-tags): Doc fix.
754
755 * semantic/complete.el (semantic-displayor-tooltip-mode)
756 (semantic-displayor-tooltip-initial-max-tags)
757 (semantic-displayor-tooltip-max-tags): Add missing custom :version tags.
758 * ede/linux.el (project-linux): Add missing group :version tag.
759
9414dd8d
CY
7602012-10-06 Chong Yidong <cyd@gnu.org>
761
762 * semantic/bovine/grammar.el:
d1069532
SM
763 * semantic/wisent/grammar.el: Move from admin/grammars.
764 Add autoloads for bovine-grammar-mode and wisent-grammar-mode.
9414dd8d 765
fd795bf4
CY
7662012-10-02 Chong Yidong <cyd@gnu.org>
767
768 * srecode.el, ede.el: Restore Version header.
769
62a81506
CY
7702012-10-01 Chong Yidong <cyd@gnu.org>
771
772 * semantic/bovine/c-by.el: Regenerate.
773 * semantic/bovine/make-by.el:
774 * semantic/bovine/scm-by.el:
775 * semantic/grammar-wy.el:
776 * semantic/wisent/javat-wy.el:
777 * semantic/wisent/js-wy.el:
778 * srecode/srt-wy.el:
779
7802012-10-01 Eric Ludlam <zappo@gnu.org>
781
782 * cedet.el (cedet-version, cedet-packages): Update.
783
784 * cedet-global.el (cedet-gnu-global-version-check): Support newer
785 versions that have extra (parens) in the version string.
786
787 * cedet-idutils.el (cedet-idutils-version-check): Make sure a
788 version number was found before calling inversion-check-version.
789
790 * data-debug.el (data-debug-insert-thing): Bind inhibit-read-only
791 while inserting the thing, then clear modified bit.
792 (data-debug-map): Suppress the keymap.
793 (data-debug-mode, data-debug-new-buffer): Make buffer read-only.
794 (data-debug-contract-current-line): Inhibit read-only, then clear
795 modified bit.
796
797 * ede.el (ede-buffer-belongs-to-project-p): Use ede-object-project
798 to allow use in more kinds of buffers.
799 (ede-project-forms-menu): Add `Default configuration' menu item.
800 (ede-configuration-forms-menu): New, for use in above.
801 (ede-project-configurations-set): New command used from menu.
802 (ede-java-classpath): New conveninece for Java support.
803 (ede-apply-object-keymap): Combine keybindings from the project
804 and the target, not just whatever is local to the buffer.
805 (ede-apply-target-options): Call fcn to apply project local
806 variables.
807 (ede-reset-all-buffers): Remove arg.
808 (ede, ede-rescan-toplevel): Callers changed.
809 (ede-new-target): Fix bug where you couldn't call this from Dired.
810 (ede-add-file): Replace assignment of ede-object with generic call
811 to re-init the buffer.
812 (ede-find-target): If ede-object is set, run short-cut code
813 instead of `or' shortcut.
814 (ede-project-buffers): Return buffers belonging to input project,
815 not any buffer belonging to any project.
816 (ede-system-include-path, ede-apply-project-local-variables)
817 (ede-set-project-local-variable): New functions.
818 (ede-make-project-local-variable): Apply to toplevel if none
819 specified.
820 (ede-set): Make it interactive.
821
822 * ede/auto.el (ede-project-autoload): New class.
823 (ede-do-dirmatch): New method.
824 (ede-project-dirmatch-p): New function.
825 (ede-project-root-directory): Call it.
826 (ede-dir-to-projectfile): Don't call project file function if we
827 didn't match the root.
828 (ede-project-root-directory): Don't call a project's root function
829 if the tool in question isn't installed.
830 (ede-dir-to-projectfile): Don't call project file function if we
831 didn't match the root.
832
833 * ede/autoconf-edit.el (autoconf-parameter-strip): Remove any
834 trailing `\' mid string, and replace with a space.
835 (autoconf-parameter-count): New function.
836 (autoconf-set-version): Use it.
837
838 * ede/base.el (ede-project): The :type of targets is now a list of
839 target base classes.
840
841 * ede/emacs.el (ede-emacs-load): Fix typo.
842
843 * ede/files.el (ede-flush-project-hash, ede-flush-directory-hash):
844 Protect against missing locator object.
845 (ede-get-locator-object): Protect against missing project.
846 (ede-flush-directory-hash): New command.
847 (ede-get-locator-object): Protect against missing project.
848
849 * ede/generic.el (ede-generic-config): Add configurable
850 `run-command' slot.
851 (project-compile-project, project-compile-target)
852 (project-debug-target, project-run-target): New methods.
853 (ede-generic-get-configuration): Specify the class to load.
854 (ede-generic-new-autoloader): Use ede-add-project-autoload.
855 (ede-enable-generic-projects): Rename projects so as to never
856 match the edeproject-* projects.
857
858 * ede/makefile-edit.el (makefile-macro-file-list): Case sensitive
859 searches. Protect against "SUBDIRS=$(subdirs)" infloop.
860
861 * ede/proj-elisp.el (ede-proj-tweak-autoconf)
862 (ede-proj-flush-autoconf): Disable local variables when loading
863 the autoconf lisp compile script.
864
865 * ede/proj.el (ede-proj-target-aux, -elisp, -elisp-autoloads)
866 (-scheme, -makefile-misc, ede-proj-target-makefile-program)
867 (-makefile-archive, -makefile-shared-object)
868 (ede-proj-target-makefile-info, -grammar): New autoloads.
d1069532
SM
869 (ede-proj-project): Inherit from eieio-persistent-read.
870 Specify extension and header line.
62a81506
CY
871 (ede-proj-load, ede-proj-save): Replace with impl using
872 eieio-persistent-read.
873
874 * ede/project-am.el (project-add-file): Use ede-target-parent
875 instead of loading the project file.
876
877 * semantic.el (semantic-version): Update.
878 (semantic-new-buffer-setup-functions): Add f90-mode, texinfo-mode.
879 (navigate-menu): Add menu item for Stickyfunc mode.
880
881 * semantic/analyze/debug.el
d1069532
SM
882 (semantic-analyzer-debug-insert-include-summary):
883 Before dereferencing tableinner, make sure it has a value.
62a81506
CY
884
885 * semantic/analyze/refs.el
886 (semantic-analyze-tag-references-default): When doing a lookup,
887 specify noerror.
888 (semantic--analyze-refs-full-lookup): Add optional noerror input
889 argument. Pass to to full-lookup-simple.
d1069532
SM
890 (semantic-analyze-refs-impl, semantic-analyze-refs-proto):
891 Ignore :typemodifiers during compare.
62a81506
CY
892
893 * semantic/bovine/c.el (semantic-lex-cpp-define): Specify limits
894 to looking back for comment chars.
895 (semantic--tag-similar-names-p, semantic--tag-similar-names-p-default)
896 (semantic--tag-attribute-similar-p): New.
897 (semantic-c-describe-environment): Handle list value of ede-object.
d1069532
SM
898 (semantic-lex-c-preprocessor-symbol-map-builtin):
899 Add __attribute_pure__.
62a81506 900
d1069532
SM
901 * semantic/bovine/scm.el (semantic-format-tag-prototype):
902 Add parent and color argument. Pass them through.
62a81506
CY
903
904 * semantic/complete.el (semantic-collector-calculate-completions):
905 Search for more matches if new prefix is a substring of old one.
906 (semantic-complete-inline-project): New function.
907
908 * semantic/db-el.el (object-print): New method.
909
910 * semantic/db-file.el (semanticdb-load-database): Specify class.
911
912 * semantic/db-typecache.el
913 (semanticdb-abstract-table::semanticdb-typecache-find-method):
914 Allow proxied tags to be resolved during the search.
915 (semanticdb-typecache-complete-flush): Support missing or empty
916 pointmax slot, to allow for more database types.
917
918 * semantic/db.el (semanticdb-abstract-table): Add db-refs slot.
919 (object-print): Allow child classes to overwrite the display of
920 the (%d tags) extra string.
921 (semanticdb-project-database): Specify :type for table.
922 (semanticdb-create-table-for-file): Specify file-truename.
d1069532
SM
923 (semanticdb-synchronize, semanticdb-partial-synchronize):
924 Restore code that refreshes references to include files.
62a81506
CY
925
926 * semantic/decorate/include.el
927 (semantic-decoration-on-fileless-includes): New face.
928 (semantic-decoration-on-fileless-include-map)
929 (semantic-decoration-on-fileless-include-menu): New variables.
d1069532
SM
930 (semantic-decoration-on-includes-highlight-default):
931 Support includes that have a table, but are not associated with a file.
62a81506
CY
932 (semantic-decoration-fileless-include-describe)
933 (semantic-decoration-fileless-include-menu): New functions.
934 (semantic-decoration-all-include-summary): Add arrows to indicate
935 the file associated with an include name.
936
937 * semantic/find.el
938 (semantic-find-tags-by-scope-protection-default): Also filter on
939 package protection of the slot.
940
941 * semantic/java.el (semantic-java-expand-tag): If some type has a
942 fully qualified name, bust it up into one package and the type
943 with a short name.
944
945 * semantic/lex.el (define-lex-block-analyzer): Protect against
946 random extra close parenthesis.
947
948 * semantic/symref.el (semantic-symref-result-get-tags): Make sure
949 the cursor is on the matched name.
950
951 * semantic/symref/list.el (semantic-symref-results-mode-map):
952 Suppress keymap.
953
954 * semantic/tag-ls.el (semantic--tag-similar-names-p)
955 (semantic--tag-attribute-similar-p)
956 (semantic--tag-similar-types-p): New functions.
957 (semantic-tag-similar-ignorable-attributes): New variable.
958 (semantic-tag-protection-default): Add package concept to return
959 value.
960 (semantic-tag-package-protected-p): New function.
961 (semantic-tag-full-package): New overload method.
962 (semantic-tag-full-package-default): New default for above.
963 (semantic-tag-full-name-default): Look for the full package name.
964
965 * semantic/tag.el (semantic-create-tag-proxy)
966 (semantic-tag-set-proxy, semantic-tag-resolve-proxy): New.
967
d1069532
SM
968 * semantic/util.el (semantic-describe-buffer):
969 Add semantic-new-buffer-fcn-was-run.
62a81506 970
d1069532
SM
971 * semantic/wisent/java-tags.el (semantic-get-local-variables):
972 Add `this' to the local variable context.
62a81506
CY
973 (semantic-analyze-split-name, semantic-analyze-unsplit-name): New.
974
d1069532
SM
975 * semantic/wisent/python.el (semantic-python-expand-tag):
976 New function.
62a81506
CY
977
978 * srecode/compile.el (srecode-compile-templates): Add "framework"
979 special variable support.
980 (srecode-compile-template-table): Support framework specifier.
981
982 * srecode/cpp.el (srecode-semantic-handle-:c)
983 (srecode-semantic-handle-:cpp): New functions.
984 (srecode-semantic-apply-tag-to-dict): Move from cpp-mode function
985 to c-mode function.
d1069532 986 (srecode-c-apply-templates): Rename from srecode-cpp-apply-templates.
62a81506
CY
987
988 * srecode/dictionary.el (initialize-instance): Remove bogus error
989 condition.
990 (srecode-create-section-dictionary): Remove unused function.
991
992 * srecode/java.el (srecode-semantic-handle-:java): Fix filename as
993 package variable. Add current_package variable.
994
995 * srecode/map.el (srecode-map-update-map): Specify the class.
996
997 * srecode/mode.el (srecode-minor-mode): Support the m3 menu.
998
d1069532
SM
999 * srecode/semantic.el (srecode-semantic-insert-tag):
1000 Support system includes.
62a81506
CY
1001
1002 * srecode/srt-mode.el (srecode-font-lock-keywords): Update.
1003
1004 * srecode/table.el (srecode-template-table): Add :framework slot.
1005 (srecode-dump): Dump it.
1006 (srecode-mode-table): Add new modetables slot.
1007 (srecode-get-mode-table): Find the mode, but also find all parent
1008 modes, and merge the tables together in :tables from :modetables.
4f405069 1009 (srecode-make-mode-table): Init :modetables.
62a81506
CY
1010 (srecode-mode-table-find): Search in modetables.
1011 (srecode-mode-table-new): Merge the differet files into the
1012 modetables slot.
1013
10142012-10-01 David Engster <deng@randomsample.de>
1015
1016 * ede.el (ede-apply-preprocessor-map): Check that
1017 `semantic-lex-spp-macro-symbol-obarray' is non-nil.
1018 (global-ede-mode): Fix call to `ede-reset-all-buffers'.
1019
1020 * ede/cpp-root.el (ede-preprocessor-map): Make sure we add the
1021 lexical-table even when the table doesn't need to be refreshed.
1022
1023 * ede/dired.el (ede-dired-minor-mode): Use called-interactively-p.
1024
1025 * ede/pmake.el (ede-pmake-insert-variable-once): Wrap in
1026 save-excursion.
1027
1028 * ede/proj-comp.el (ede-proj-makefile-insert-rules): Fix insertion
1029 of phony rule.
1030
d1069532
SM
1031 * ede/proj-elisp.el (ede-proj-target-elisp):
1032 Remove ede-emacs-preload-compiler.
62a81506
CY
1033 (ede-proj-makefile-insert-rules, ede-proj-makefile-dependencies):
1034 New methods.
1035 (ede-emacs-compiler): Add 'require' macro to variables and pattern
1036 rule. Add .elc object extension.
1037 (ede-proj-elisp-packages-to-loadpath): Allow longer relative names.
1038 (ede-proj-makefile-insert-variables): Do not insert preload items.
1039 (ede-proj-target-elisp-autoloads): Don't depend on cedet-autogen.
1040
1041 * ede/util.el (ede-make-buffer-writable):
1042 * semantic/debug.el (semantic-debug-mode): Set buffer-read-only
1043 instead of calling toggle-read-only.
1044
1045 * semantic.el (semantic-fetch-tags): Use progress reporter only
1046 when called interactively.
1047 (semantic-submode-list): Add debugging modes.
1048 (semantic-mode): Remove Semantic from after-change-functions.
1049 Delete the cache, call semantic--tag-unlink-cache-from-buffer, and
1050 set semantic-new-buffer-fcn-was-run to nil.
1051
1052 * semantic/analyze/fcn.el (semantic-analyze-tag-prototype-p)
1053 (semantic-analyze-tag-prototype-p-default): Remove.
1054 (semantic-analyze-type, semantic-analyze-dereference-metatype-1):
1055 Use semantic-tag-prototype-p.
1056
1057 * semantic/bovine/c.el (semantic-c-reset-preprocessor-symbol-map):
1058 Ensure semantic-mode is on before getting preprocessor symbols.
1059 (semantic-c-skip-conditional-section): Use c-scan-conditionals.
1060 (semantic-c-convert-spp-value-to-hideif-value)
1061 (semantic-c-evaluate-symbol-for-hideif, semantic-c-hideif-lookup)
1062 (semantic-c-hideif-defined): Revive hideif code from CEDET trunk.
1063 (semantic-lex-c-if, semantic-c-do-lex-ifdef): Revert changes for
1064 regular expression parsing.
1065 (semantic-cpp-lexer): Add semantic-lex-c-ifdef.
1066 (semantic-expand-c-tag): Check if tag is non-nil before adding it
4f405069 1067 to return list.
d1069532
SM
1068 (semantic-expand-c-extern-C, semantic-expand-c-complex-type):
1069 New functions, copied from semantic-expand-c-tag.
62a81506
CY
1070 (semantic-find-tags-included): New override which also searches
1071 for include tags inside of namespaces.
1072 (semantic-c-dereference-typedef): Use semantic-tag-prototype-p.
1073 (semanticdb-find-table-for-include): New override.
1074
1075 * semantic/bovine/el.el: Remove emacs-lisp-mode-hook.
1076
d1069532
SM
1077 * semantic/complete.el (semantic-complete-post-command-hook):
1078 Exit completion when user has deleted all characters from the prefix.
62a81506
CY
1079 (semantic-displayor-focus-request): Return to previous window when
1080 focussing tags.
1081
1082 * semantic/db-el.el (semanticdb-normalize-one-tag): Make obsolete.
1083 (semanticdb-elisp-sym->tag): Use help-function-arglist instead.
1084
d1069532
SM
1085 * semantic/db-file.el (semanticdb-create-database):
1086 Use semantic-tag-version instead of just semantic-version as the
62a81506
CY
1087 initializer for the :semantic-tag-version slot.
1088
1089 * semantic/db-find.el (semanticdb-find-tags-by-class-method):
1090 Delegate `include' to semantic-find-tags-included, which by
1091 default will just call semantic-find-tags-by-class.
1092
1093 * semantic/db.el (semanticdb-refresh-table): Do not print warnings
1094 when calling semantic-find-file-noselect. This avoids the "file
1095 is write protected" messages when parsing system header files,
1096 which might easily be mistaken to mean the currently loaded file.
1097 (semanticdb-save-current-db, semanticdb-save-all-db): Only emit
1098 message when running interactively.
1099
d1069532
SM
1100 * semantic/decorate/mode.el (semantic-decoration-mode):
1101 Activate decoration of includes by default.
62a81506 1102
d1069532
SM
1103 * semantic/doc.el (semantic-doc-snarf-comment-for-tag):
1104 Remove comment delimiter at the end of the text.
62a81506
CY
1105
1106 * semantic/ede-grammar.el (semantic-ede-proj-target-grammar):
1107 Change aux- and pre-load-packages.
1108 (ede-proj-makefile-dependencies): Update pattern rule so that
1109 resulting parsers are also byte-compiled.
1110 (semantic-ede-grammar-compiler-bovine)
1111 (semantic-ede-source-grammar-wisent): Remove .elc from gargage
1112 pattern, since this is already covered by the elisp compiler.
1113 (project-compile-target): Add compatibility code for Emacs 23,
1114 which does not have `byte-recompile-file'.
1115 (ede-proj-makefile-insert-rules): Add target specific EMACSFLAGS
1116 to raise max-specpdl-size and max-lisp-eval-depth.
1117
d1069532
SM
1118 * semantic/find.el (semantic-find-tags-included):
1119 Make overridable.
62a81506
CY
1120
1121 * semantic/fw.el (semantic-alias-obsolete)
1122 (semantic-varalias-obsolete): Use byte-compile-warn.
1123 (semantic-find-file-noselect): Disable font lock by calling
1124 global-font-lock-mode.
1125
d1069532
SM
1126 * semantic/grammar.el (semantic-grammar-create-package):
1127 Fix message.
62a81506
CY
1128 (semantic-grammar-batch-build-one-package): When generating
1129 parsers in batch-mode, ignore version control and make sure we do
1130 not use cached versions.
1131
1132 * semantic/ia.el (semantic-ia-complete-symbol-menu): Bring back.
1133
1134 * semantic/lex-spp.el (semantic-lex-spp-symbol-merge): New fun.
1135 (semantic-lex-spp-token-macro-to-macro-stream): Use it.
1136 (semantic-lex-spp-lex-text-string): Instead of only setting the
1137 lexer, call the major mode's setup function.
1138
d1069532
SM
1139 * semantic/scope.el (semantic-analyze-scoped-types-default):
1140 Use semantic-tag-prototype-p.
62a81506
CY
1141 (semantic-analyze-scope-nested-tags-default): Make sure we don't
1142 return tags we already have in scopetypes.
1143
1144 * semantic/symref/filter.el
1145 (semantic-symref-test-count-hits-in-tag): Restore.
1146
d1069532
SM
1147 * semantic/wisent/comp.el (wisent-BITS-PER-WORD):
1148 Use most-positive-fixnum if available.
62a81506
CY
1149
1150 * semantic/wisent/javascript.el (semantic-tag-protection)
1151 (semantic-analyze-scope-calculate-access)
1152 (semantic-ctxt-current-symbol): New overrides.
1153
1154 * semantic/wisent/python.el (wisent-python-lex-beginning-of-line):
1155 Rewrite to fix byte-compiler warning.
1156
11572012-10-01 Robert Jarzmik <robert.jarzmik@free.fr>
1158
1159 * ede/linux.el (project-linux): New group.
1160 (project-linux-compile-target-command)
1161 (project-linux-compile-project-command): New options.
1162 (project-compile-project, project-compiler-target): New methods.
1163
1164 * inversion.el (inversion-decoders): New regexps for SXEmacs.
1165 (inversion-package-version): More verbose error message.
1166 (inversion-<): Deal with new special cases.
1167 (inversion-require-emacs): New argument sxemacs-ver; use it.
1168
11692012-10-01 Nelson Ferreira <nelson.ferreira@ieee.org>
1170
1171 * ede/emacs.el (ede-emacs-version): Detect SXEmacs.
1172
11732012-10-01 William Xu <william.xwl@gmail.com>
1174
1175 * semantic/bovine/gcc.el (semantic-gcc-query): Returns status when
1176 there is an error.
1177 (semantic-gcc-setup): If the first attempt at calling cpp fails,
1178 try straight GCC.
1179
e36b2d20 11802012-10-01 Jan Moringen <jan.moringen@uni-bielefeld.de>
62a81506
CY
1181
1182 * semantic/idle.el
d1069532
SM
1183 (semantic-idle-breadcrumbs--display-in-header-line):
1184 Escape %-characters to avoid erroneous expansion in header line.
62a81506
CY
1185 (semantic-idle-breadcrumbs--display-in-mode-line): Likewise.
1186
1187 * semantic/wisent/python.el (wisent-python-reconstitute-function-tag)
1188 (wisent-python-reconstitute-class-tag, semantic-python-special-p)
1189 (semantic-python-private-p, semantic-python-instance-variable-p)
1190 (semantic-python-docstring-p): New functions.
1191
1192 * srecode/find.el (srecode-user-template-p): New function.
1193 (srecode-all-template-hash): Accept new optional argument
1194 predicate; return only templates matching the predicate.
1195 (srecode-read-template-name): Only retrieve templates matching
1196 srecode-user-template-p.
1197
1198 * srecode/insert.el (srecode-insert-show-error-report)
1199 (srecode-insert-report-error): New functions.
1200 (srecode-insert-variable-secondname-handler)
1201 (srecode-insert-method, srecode-insert-ask-default)
1202 (srecode-insert-variable-secondname-handler)
1203 (srecode-insert-subtemplate, srecode-insert-method-helper)
1204 (srecode-insert-include-lookup): Use them.
1205
12062012-10-01 Thomas Bach <thbach@students.uni-mainz.de>
1207
1208 * semantic/wisent/python.el
1209 (semantic-python-get-system-include-path): Add Python3k support.
1210
12112012-10-01 Alexander Haeckel <_@_> (tiny change)
1212
1213 * srecode/getset.el (srecode-query-for-field): Return the first
1214 tag found by name from all children tags.
1215
12162012-10-01 Dale Sedivec <dale@codefu.org>
1217
1218 * semantic/wisent/python.el (wisent-python-string-start-re)
1219 (wisent-python-string-re, wisent-python-forward-string)
d1069532
SM
1220 (wisent-python-forward-line,wisent-python-lex-string):
1221 New variables.
62a81506
CY
1222 (wisent-python-forward-balanced-expression): New function.
1223
12242012-10-01 Pete Beardmore <elbeardmorez@msn.com>
1225
1226 * semantic/complete.el (semantic-collector-calculate-completions):
1227 Search for additional matches if new prefix is a substring of the
1228 old prefix.
1229 (semantic-displayor-next-action): Immediately show more
1230 completions after user presses TAB the first time.
1231 (semantic-displayor-tooltip-mode)
1232 (semantic-displayor-tooltip-initial-max-tags)
1233 (semantic-displayor-tooltip-max-tags): New defcustoms.
d1069532
SM
1234 (semantic-displayor-tooltip): Use new variables as initforms.
1235 Use new slot `mode' instead of `force-show'. Rename `max-tags' to
62a81506
CY
1236 `max-tags-initial'.
1237 (semantic-displayor-show-request): Display completions according
1238 to new modes, and make variable names clearer.
1239 (semantic-displayor-tooltip::semantic-displayor-scroll-request):
1240 Use new max-tags-initial slot.
1241
d1069532
SM
1242 * semantic/idle.el (semantic-idle-local-symbol-highlight):
1243 Make sure there actually is a tag at point.
62a81506
CY
1244 (semantic-idle-completion-list-default): Report errors as messages
1245 if semantic-idle-scheduler-verbose-flag is non-nil.
1246
12472012-10-01 Richard Kim <emacs18@gmail.com>
1248
1249 * semantic/db-global.el (semanticdb-enable-gnu-global-databases):
1250 Add optional NOERROR argument.
1251
12522012-10-01 Alex Ott <alexott@gmail.com>
1253
d1069532
SM
1254 * semantic/idle.el (semantic-idle-scheduler-enabled-p):
1255 Fix file-checking.
62a81506
CY
1256
12572012-10-01 Darren Hoo <darren.hoo@gmail.com> (tiny change)
1258
d1069532
SM
1259 * semantic/db-find.el (semanticdb-find-default-throttle):
1260 Make buffer-local.
62a81506
CY
1261 (semanticdb-strip-find-results): Check for existing :filename
1262 attribute, so that file information from GNU Global is not lost.
1263
651eaf36
AS
12642012-08-07 Andreas Schwab <schwab@linux-m68k.org>
1265
1266 * ede/base.el (ede-with-projectfile): Use backquote forms.
1267
1cd64625
PE
12682012-07-29 Paul Eggert <eggert@cs.ucla.edu>
1269
1270 inaccessable -> inaccessible spelling fix (Bug#10052)
1271 * semantic/wisent/comp.el (wisent-inaccessible-symbols):
1272 Rename from wisent-inaccessable-symbols, fixing a misspelling.
1273 Caller changed.
1274
b33da87c
AS
12752012-07-09 Andreas Schwab <schwab@linux-m68k.org>
1276
1277 * ede/project-am.el: Fix typo.
1278
c4444d16
PE
12792012-07-09 Paul Eggert <eggert@cs.ucla.edu>
1280
1281 Rename configure.in to configure.ac (Bug#11603).
1282 * ede/autoconf-edit.el (autoconf-find-query-for-program)
1283 (autoconf-new-program):
1284 * ede/emacs.el (ede-emacs-version):
1285 * ede/proj.el (ede-proj-setup-buildenvironment):
1286 * ede/project-am.el (project-am-autoconf-file-options):
1287 Prefer configure.ac to configure.in.
1288
41bf0c48
DE
12892012-03-12 David Engster <deng@randomsample.de>
1290
1291 * semantic/db-find.el
1292 (semanticdb-find-translate-path-brutish-default): If we don't yet
1293 have a proper table for PATH, use `semanticdb-current-database'
1294 instead (bug #10343).
1295
da418981
DE
12962012-03-11 David Engster <deng@randomsample.de>
1297
1298 * semantic/wisent/javascript.el (js-mode): Define `js-mode' as
1299 child-mode of `javascript-mode' (bug #8445).
1300
44e97401
GM
13012012-02-28 Glenn Morris <rgm@gnu.org>
1302
1303 * semantic/db.el (semanticdb-search-results-table):
1304 Doc fix (standardize possessive apostrophe usage).
1305
af8556d2
JB
13062012-02-09 Juanma Barranquero <lekktu@gmail.com>
1307
1308 * ede/auto.el (ede-directory-safe-p, ede-add-project-to-global-list):
1309 Add declarations.
1310
c6ddbd68
DE
13112012-01-29 David Engster <deng@randomsample.de>
1312
1313 Fix require error when using srecode-insert (Bug#9967).
1314 * srecode/insert.el: Require srecode/filters.
1315 * srecode/filters.el: Drop two requires.
1316
a62d5ee1
EL
13172012-01-09 Eric Ludlam <zappo@gnu.org>
1318
1319 * ede.el (ede-project-directories): New option.
1320 (ede-directory-safe-p): Check it.
1321 (ede-initialize-state-current-buffer, ede, ede-new)
1322 (ede-check-project-directory, ede-rescan-toplevel)
1323 (ede-load-project-file, ede-parent-project, ede-current-project):
1324 (ede-target-parent): Avoid loading in a project unless it is safe,
1325 since it may involve malicious code. This security flaw was
1326 pointed out by Hiroshi Oota.
1327
1328 * ede/auto.el (ede-project-autoload): Add safe-p slot.
1329 (ede-project-class-files): Projects using Project.ede are unsafe.
1330 (ede-auto-load-project): New method.
1331
1332 * ede/simple.el (ede-project-class-files): Mark as unsafe.
1333
9954ec0d
SS
13342011-12-19 Sam Steingold <sds@gnu.org>
1335
1336 * semantic/edit.el (semantic-edits-incremental-parser): Add the
1337 autoload cookie, necessary for JDEE.
1338
a98edce9
JB
13392011-12-06 Juanma Barranquero <lekktu@gmail.com>
1340
1341 * semantic/bovine/c.el (semantic-tag-abstract-p): Fix typo.
1342
78adbf9c
CY
13432011-11-26 Chong Yidong <cyd@gnu.org>
1344
1345 * semantic/wisent/python-wy.el:
1346 * semantic/wisent/js-wy.el:
1347 * semantic/wisent/javat-wy.el:
1348 * semantic/bovine/c-by.el:
1349 * semantic/grammar-wy.el: Regenerate.
1350
20db1522
JB
13512011-11-24 Juanma Barranquero <lekktu@gmail.com>
1352
1353 * semantic/lex-spp.el (semantic-lex-spp-first-token-arg-list): Fix typo.
1354
cd1181db
JB
13552011-11-20 Juanma Barranquero <lekktu@gmail.com>
1356
1357 * cedet-cscope.el (cedet-cscope-version-check):
1358 * cedet-global.el (cedet-global-min-version)
1359 (cedet-gnu-global-version-check):
1360 * cedet.el (cedet-version):
1361 * data-debug.el (data-debug-prev, data-debug-contract-current-line):
1362 * ede.el (ede-buffer-belongs-to-project-p, ede-auto-add-to-target)
1363 (ede-new, ede-invoke-method, project-edit-file-target, project-rescan)
1364 (ede-add-project-to-global-list, ede-map-all-subprojects):
1365 * inversion.el (inversion-check-version):
1366 * mode-local.el (mode-local-map-file-buffers, define-child-mode)
1367 (define-overloadable-function):
1368 * pulse.el (pulse-flag, pulse):
1369 * semantic.el (semantic-elapsed-time, semantic-parse-region)
1370 (navigate-menu):
1371 * ede/proj-comp.el (ede-compilation-program):
1372 * semantic/debug.el (semantic-debug-parser-go)
1373 (semantic-debug-parser-fail, semantic-debug-parser-quit)
1374 (semantic-debug-parser-abort):
1375 * semantic/idle.el (semantic-idle-core-handler):
1376 * semantic/bovine/debug.el (semantic-bovine-debug-error-frame):
1377 Fix typos.
1378
58179cce
JB
13792011-11-16 Juanma Barranquero <lekktu@gmail.com>
1380
1381 * semantic/lex.el (semantic-lex-tokens):
1382 * semantic/tag-ls.el (semantic-tag-protected-p):
1383 * srecode/mode.el (srecode-prefix-map): Fix typos.
1384
0d26e0b6
JB
13852011-11-15 Juanma Barranquero <lekktu@gmail.com>
1386
1387 * ede/project-am.el (project-compile-target-command): Fix typo.
1388
0b381c7e
JB
13892011-11-14 Juanma Barranquero <lekktu@gmail.com>
1390
1391 * ede/auto.el (ede-project-autoload):
1392 * ede/proj-comp.el (ede-makefile-rule):
1393 * semantic/analyze.el (semantic-analyze-current-context):
1394 * semantic/ctxt.el (semantic-get-local-variables):
1395 * semantic/tag-ls.el (semantic-tag-calculate-parent): Fix typos.
1396
07a79ce4
DE
13972011-11-03 David Engster <dengste@eml.cc>
1398
1399 * srecode.el:
1400 * srecode/texi.el:
1401 * srecode/template.el:
1402 * srecode/java.el:
1403 * srecode/insert.el:
1404 * srecode/document.el:
1405 * srecode/dictionary.el:
1406 * srecode/compile.el:
1407 * semantic/wisent/java-tags.el:
1408 * semantic/texi.el:
1409 * semantic/sort.el:
1410 * semantic/lex-spp.el:
1411 * semantic/idle.el:
1412 * semantic/html.el:
1413 * semantic/db-typecache.el:
1414 * semantic/analyze/complete.el:
1415 * ede/generic.el:
1416 * ede/custom.el:
1417 * ede/cpp-root.el:
1418 * ede/base.el: Fix filenames in comments and headers.
1419
1420 * semantic/db-find.el:
1421 * srecode/insert.el (srecode-insert-include-lookup):
1422 * ede/proj-comp.el (ede-compilation-program): Fix it's -> its in
1423 comments and docstrings.
1424
1425 * semantic/ctxt.el (semantic-end-of-context-default):
1426 * semantic/find.el (semantic-find-tags-by-scope-protection):
1427 * semantic/java.el (semantic-documentation-for-tag): Fix typos in
1428 docstrings.
1429
1430 * semantic/db.el (semanticdb-table, semanticdb-abstract-cache)
1431 (semanticdb-abstract-db-cache):
1432 * semantic/decorate/include.el
1433 (semantic-decoration-unknown-include-describe): Fix filenames in
1434 docstring.
1435
1436 * semantic/ede-grammar.el (semantic-ede-grammar-compiler-wisent):
1437 (semantic-ede-grammar-compiler-bovine): Fix requires that are
1438 added to the grammar-make-script.
1439
86c60681
CY
14402011-10-23 Chong Yidong <cyd@gnu.org>
1441
1442 * ede.el (ede-maybe-checkout): Function deleted;
1443 vc-toggle-read-only does not do version control now.
1444
1445 * ede/util.el (ede-make-buffer-writable): Don't use
1446 vc-toggle-read-only.
1447
1448 * ede/project-am.el (project-remove-file, project-add-file)
1449 (project-new-target): Don't call ede-maybe-checkout.
1450
ac6c8639
CY
14512011-10-19 Chong Yidong <cyd@gnu.org>
1452
1453 * ede.el (ede-minor-mode,global-ede-mode):
1454 * semantic.el (semantic-mode): Doc fix to reflect new
1455 define-minor-mode calling behavior.
1456
b4010ade
CY
14572011-07-30 Chong Yidong <cyd@stupidchicken.com>
1458
af8556d2
JB
1459 * semantic/grammar.el (semantic-grammar-insert-defanalyzers):
1460 Fix require.
b4010ade 1461
60c55439
DH
14622011-07-04 Darren Hoo <darren.hoo@gmail.com> (tiny change)
1463
1464 * semantic/db.el (semanticdb-file-table-object): Don't bug out on
1465 unconfigured projects if `global-ede-mode' is on (bug#8092).
1466
98768aeb
PE
14672011-07-01 Paul Eggert <eggert@cs.ucla.edu>
1468
1469 * semantic.el (semantic-elapsed-time): Rewrite using
1470 time-subtract and float-time.
1471
4f306b0f
GM
14722011-05-11 Glenn Morris <rgm@gnu.org>
1473
1474 * semantic/wisent/javascript.el (semantic-get-local-variables):
1475 Use define-mode-local-override rather than its obsolete alias.
1476
79b70037
GM
14772011-05-10 Jim Meyering <meyering@redhat.com>
1478
1479 Fix doubled-word typos.
1480 * ede/pmake.el (ede-proj-makefile-garbage-patterns): the the -> the
1481 * semantic/complete.el (semantic-complete-read-tag-local-members):
1482 Likewise.
1483 * ede.el (ede-auto-add-method): then then -> then
1484
4ffd0d6b 14852011-04-23 Juanma Barranquero <lekktu@gmail.com>
7ee6a1d3
JB
1486
1487 * ede/pconf.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1488 * ede/proj-comp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1489 * ede/proj-elisp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf)
1490 (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1491 * ede/proj-scheme.el (ede-proj-tweak-autoconf): Fix typos in docstrings.
1492
33383987
JB
14932011-03-07 Chong Yidong <cyd@stupidchicken.com>
1494
1495 * Version 23.3 released.
1496
cb9336bd
SM
14972011-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
1498
1499 * semantic/wisent/comp.el (wisent-byte-compile-grammar):
1500 Macroexpand before passing to byte-compile-form.
1501
4d789d84
SM
15022011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1503
1504 * srecode/srt-mode.el (srecode-template-mode): Use define-derived-mode.
1505 * semantic/symref/list.el (semantic-symref-results-mode):
1506 Use run-mode-hooks.
1507
df26e1f5
GM
15082010-11-12 Glenn Morris <rgm@gnu.org>
1509
1510 * semantic/wisent/comp.el: Remove unnecessary eval-when-compiles.
1511
72bc50c0
GM
15122010-11-10 Glenn Morris <rgm@gnu.org>
1513
1514 * semantic/bovine/c.el: Test system-type with memq.
1515
9b026d9f
GM
15162010-11-09 Glenn Morris <rgm@gnu.org>
1517
1518 * semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
1519 * semantic/grammar.el (semantic-grammar-epilogue):
1520 * ede/speedbar.el (ede-find-nearest-file-line):
1521 * ede/pmake.el (ede-proj-makefile-insert-dist-rules):
1522 * ede/autoconf-edit.el (autoconf-delete-parameter):
1523 Use point-at-bol and point-at-eol.
1524
e180ab9f
GM
15252010-11-07 Glenn Morris <rgm@gnu.org>
1526
1527 * ede/proj-elisp.el (ede-proj-flush-autoconf): Use point-at-bol.
1528
9a1a272a
GM
15292010-11-01 Glenn Morris <rgm@gnu.org>
1530
ca7c89d8
GM
1531 * semantic/bovine/c.el (semantic-analyze-split-name): Move before use.
1532
9a1a272a
GM
1533 * semantic/symref/cscope.el (ede-toplevel):
1534 * semantic/symref.el (ede-toplevel):
1535 * semantic/tag-file.el (ede-toplevel):
1536 * ede.el (ede-toplevel): Fix declarations.
1537
fd8d481e
GM
15382010-10-31 Glenn Morris <rgm@gnu.org>
1539
39a766fb 1540 * ede/proj-elisp.el (project-compile-target): Fix previous change.
fd8d481e
GM
1541 * semantic/ede-grammar.el (project-compile-target): Fix previous change.
1542
15432010-10-31 Julien Danjou <julien@danjou.info>
1544
1545 * ede/proj-elisp.el (project-compile-target):
1546 * semantic/ede-grammar.el (project-compile-target):
1547 Use `byte-recompile-file'.
1548
2699a554 15492010-10-31 Glenn Morris <rgm@gnu.org>
d2ce10d2
GM
1550
1551 * mode-local.el (mode-local-augment-function-help):
1552 * semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons):
1553 * semantic/symref/list.el (semantic-symref-results-dump)
1554 (semantic-symref-rb-toggle-expand-tag): Replace inappropriate uses
1555 of toggle-read-only.
1556
5d2e9377
CY
15572010-09-30 Chong Yidong <cyd@stupidchicken.com>
1558
1559 * semantic/bovine/el.el:
1560 * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode):
1561 Fix require statements.
1562
ac73b1fa
CY
15632010-09-29 Chong Yidong <cyd@stupidchicken.com>
1564
1565 * semantic/tag.el (semantic-tag-version): Bump to 2.0.
1566
1567 * semantic/db-typecache.el (semanticdb-typecache-find-default):
1568 * semantic/imenu.el (semantic-create-imenu-index):
1569 * semantic/grammar.el (semantic--grammar-macro-function-tag):
4d789d84
SM
1570 * semantic/fw.el (semanticdb-without-unloaded-file-searches):
1571 Fix require. Suggested by David Engster.
ac73b1fa
CY
1572
1573 * semantic/bovine/c-by.el: Regenerate.
1574
15752010-09-29 Eric Ludlam <zappo@gnu.org>
1576
1577 * semantic/lex-spp.el (semantic-lex-spp-debug-symbol): New var.
4f405069 1578 (semantic-lex-spp-enable-debug-symbol): New command.
ac73b1fa 1579 (semantic-lex-spp-value-valid-p)
4f405069 1580 (semantic-lex-spp-validate-value): New functions.
ac73b1fa
CY
1581 (semantic-lex-spp-symbol-set)
1582 (semantic-lex-spp-symbol-push): Add call to validate value.
1583 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
1584 invalid values during save, just save a nil.
1585
b93e37e5
CY
15862010-09-25 Chong Yidong <cyd@stupidchicken.com>
1587
1588 * ede/linux.el (ede-project-class-files):
1589 * ede/generic.el (ede-generic-new-autoloader):
1590 * ede/emacs.el (ede-project-class-files):
1591 * ede/simple.el (ede-project-class-files):
1592 * ede/cpp-root.el (ede-project-class-files): Fix require name.
1593
40b1a3a9
JB
15942010-09-25 Juanma Barranquero <lekktu@gmail.com>
1595
1596 * semantic/lex.el (semantic-ignore-comments): Doc fix.
1597
1598 * semantic/symref/list.el (semantic-symref-list-rename-open-hits):
1599 Fix typo in error message.
1600 (semantic-symref-list-map-open-hits): Fix typo in docstring.
1601
b9749554
EL
16022010-09-21 Eric Ludlam <zappo@gnu.org>
1603
1604 Synch SRecode to CEDET 1.0.
1605
1606 * pulse.el (pulse-momentary-highlight-overlay): If pulse-flag is
1607 'never, disable all pulsing.
1608
1609 * cedet.el (cedet-version):
1610 * srecode.el (srecode-version): Bump version to 1.0.
1611
1612 * srecode/texi.el (srecode-texi-insert-tag-as-doc): New function.
1613 (semantic-insert-foreign-tag): Use it.
1614
4d789d84
SM
1615 * srecode/mode.el (srecode-bind-insert):
1616 Call srecode-load-tables-for-mode.
b9749554
EL
1617 (srecode-minor-mode-templates-menu): Do not list templates that
1618 are not in the current project.
1619 (srecode-menu-bar): Add binding for srecode-macro-help.
1620
1621 * srecode/table.el (srecode-template-table): Add :project slot.
1622 (srecode-dump): Dump it.
1623
1624 * srecode/map.el (srecode-map-update-map): Make map loading more
1625 robust.
1626
1627 * srecode/insert.el (srecode-insert-fcn): Merge template
1628 dictionary before resolving arguments.
1629 (srecode-insert-method-helper): Add error checking to make sure
1630 that we only have dictionaries.
1631 (srecode-insert-method): Check template nesting depth when using
1632 point inserter override.
1633 (srecode-insert-method): Install override with depth limit.
1634
1635 * srecode/getset.el (srecode-insert-getset): Force tag table
1636 update. Don't query the class if it is empty.
1637
1638 * srecode/find.el (srecode-template-get-table)
1639 (srecode-template-get-table-for-binding)
1640 (srecode-all-template-hash): Skip if not in current project.
1641 (srecode-template-table-in-project-p): New method.
1642
1643 * srecode/fields.el (srecode-fields-exit-confirmation): New option.
1644 (srecode-field-exit-ask): Use it.
1645
1646 * srecode/dictionary.el (srecode-dictionary-add-template-table):
1647 Do not add variables in tables not for the current project.
1648 (srecode-compound-toString): Handle cases where the default value
1649 is another compound value.
1650 (srecode-dictionary-lookup-name): New optional argument
1651 NON-RECURSIVE, which inhibits visiting dictionary parents.
1652 (srecode-dictionary-add-section-dictionary)
1653 (srecode-dictionary-merge): New optional argument FORCE adds
1654 values even if an identically named entry exists.
1655 (srecode-dictionary-add-entries): New method.
1656 (srecode-create-dictionaries-from-tags): New function.
1657
1658 * srecode/cpp.el (srecode-cpp): New defgroup.
1659 (srecode-cpp-namespaces): New option.
1660 (srecode-semantic-handle-:using-namespaces)
1661 (srecode-cpp-apply-templates): New functions.
1662 (srecode-semantic-apply-tag-to-dict): Handle template parameters
1663 by calling `srecode-cpp-apply-templates'.
1664
1665 * srecode/compile.el (srecode-compile-templates): Fix directory
1666 compare of built-in templates. Give built-ins lower piority.
1667 Support special variable "project".
1668 (srecode-compile-template-table): Set :project slot of new tables.
4d789d84
SM
1669 (srecode-compile-one-template-tag):
1670 Use srecode-create-dictionaries-from-tags.
b9749554 1671
cb85c0d8
EL
16722010-09-21 Eric Ludlam <zappo@gnu.org>
1673
1674 Synch EDE to CEDET 1.0.
1675
1676 * cedet-idutils.el (cedet-idutils-make-command): New option.
1677 (cedet-idutils-mkid-call):
1678 (cedet-idutils-create/update-database): New functions.
1679
1680 * cedet-cscope.el (cedet-cscope-create):
1681 (cedet-cscope-create/update-database): New functions.
1682 (cedet-cscope-support-for-directory): Make interactive.
1683
1684 * cedet-global.el (cedet-global-gtags-command): New option.
1685 (cedet-gnu-global-gtags-call)
1686 (cedet-gnu-global-create/update-database): New functions.
1687
1688 * ede.el (ede-save-cache): Fix recentf-exclude expression.
1689 (ede-make-dist): Always use toplevel project.
1690 (ede-buffer-object): If we fail to find an object in the current
1691 project, loop upward looking for a match. If no target is found,
1692 use most local project.
1693 (ede-buffer-belongs-to-target-p)
1694 (ede-buffer-belongs-to-project-p): New functions.
1695 (ede-initialize-state-current-buffer): New function.
1696 (ede-target-forms-menu, ede-project-buffers): Use them.
1697 (ede-minor-mode, ede-reset-all-buffers): Use it.
1698 (project-interactive-select-target, project-add-file): Don't use
1699 ede-project-force-load.
1700 (ede-buffer-object): New arg PROJSYM.
1701 (ede-minor-mode): Remove ede-directory-project-p test.
1702 (ede-initialize-state-current-buffer): Don't test for
1703 ede-directory-project-p if there is a matching open project.
1704 (ede-customize-forms-menu): Prevent error if there is no project.
1705 (ede-load-project-file): Set ede-constructing to the thing being
1706 constructed, instead of t.
d1069532 1707 (ede-project-force-load): Delete.
cb85c0d8
EL
1708
1709 * ede/base.el:
1710 * ede/auto.el:
1711 * ede/custom.el: New files.
1712
1713 * ede/autoconf-edit.el (autoconf-find-last-macro)
1714 (autoconf-parameters-for-macro): Parse multiline parameters of
1715 macros. Optionally ignore case and at bol for macro.
1716 (autoconf-parameter-strip): Use greedy match for newlines.
d1069532 1717 (autoconf-new-automake-string): Delete.
cb85c0d8
EL
1718 (autoconf-new-program): Use SRecode to fill an empty file.
1719
4d789d84
SM
1720 * ede/cpp-root.el (ede-create-lots-of-projects-under-dir):
1721 New function.
cb85c0d8
EL
1722
1723 * ede/files.el (ede-flush-project-hash): New command.
1724 (ede-convert-path): Add optional PROJECT arg.
1725 (ede-directory-project-p): Obey ".ede-ignore".
1726 (ede-expand-filename-local)
1727 (ede-expand-filename-impl-via-subproj): New methods.
1728 (ede-expand-filename-impl): Use them.
1729 (ede-project-root, ede-project-root-directory): Move to
1730 ede/auto.el.
1731
1732 * ede/locate.el (ede-locate-flush-hash):
1733 (ede-locate-create/update-root-database): New methods.
1734 (initialize-instance): Use ede-locate-flush-hash.
1735
1736 * ede/pmake.el (ede-proj-makefile-insert-variables): If this is
1737 the top project and not a metasubproject, set TOP to CURDIR.
1738 (ede-proj-makefile-insert-variables): Output a target's object
1739 list whether or not the vars are already in the Makefile.
1740 (ede-pmake-insert-variable-once): New macro.
1741
4d789d84
SM
1742 * ede/project-am.el (project-am-with-makefile-current):
1743 Add recentf-exclude.
cb85c0d8
EL
1744 (project-am-load-makefile): Obey an optional suggested name.
1745 (project-am-expand-subdirlist): New function.
1746 (project-am-makefile::project-rescan): Use it. Combine SUBDIRS
1747 and DIST_SUBDIRS.
4f405069 1748 (project-am-meta-type-alist): A list to scan better Makefile.am.
cb85c0d8
EL
1749 (project-am-scan-for-targets): Scan also over
1750 project-am-meta-type-alist.
1751 (ede-system-include-path): Simple implementation.
d1069532 1752 (ede-find-target): Delete. EDE core takes care of this.
cb85c0d8
EL
1753 (ede-buffer-mine): Create the searched filename as relative.
1754 (project-am-load): Simplify, using autoconf-edit.
1755 (project-am-extract-package-info): Fix separators.
1756
1757 * ede/proj.el (project-run-target): New method.
4d789d84
SM
1758 (project-make-dist, project-compile-project):
1759 Use ede-proj-automake-p to determine which kind of compile to use.
cb85c0d8
EL
1760 (project-rescan): Call ede-load-project-file.
1761 (ede-buffer-mine): Add more file names that belong to the project.
1762 (ede-proj-compilers): Improve error message.
1763
1764 * ede/proj-obj.el (ede-ld-linker): Use the LDDEPS variable.
1765 (ede-source-c++): Add more C++ extensions.
4d789d84
SM
1766 (ede-proj-target-makefile-objectcode): Quote initforms.
1767 Support lex and yacc.
cb85c0d8 1768
d1069532 1769 * ede/proj-prog.el (ede-proj-makefile-insert-rules): Remove.
cb85c0d8
EL
1770 (ede-proj-makefile-insert-variables): New, add LDDEPS.
1771 (ede-proj-makefile-insert-automake-post-variables): Add LDADD
1772 variable. Use ldlibs-local slot. Add a -l to ldlibs strings.
1773 (ede-proj-target-makefile-program): Swap order of two slots so
1774 they show up in the same order as in the command line.
1775 (ede-proj-target-makefile-program): Add ldlibs-local slot.
1776
4d789d84
SM
1777 * ede/proj-shared.el (ede-g++-libtool-shared-compiler):
1778 Fix inference rule to use cpp files.
cb85c0d8
EL
1779 (ede-proj-target-makefile-shared-object): Quote initforms.
1780
1781 * ede/proj-misc.el (ede-proj-target-makefile-miscelaneous):
1782 * ede/proj-info.el (ede-proj-target-makefile-info):
1783 * ede/proj-aux.el (ede-proj-target-aux):
1784 * ede/proj-archive.el (ede-proj-target-makefile-archive):
1785 * ede/proj-elisp.el (ede-proj-target-elisp)
1786 (ede-proj-target-elisp-autoloads): Quote initforms.
1787
1788 * ede/srecode.el (ede-srecode-setup): Load autoconf templates.
1789
1790 * ede/shell.el (ede-shell-buffer): Fix buffer name.
1791
1792 * ede/pconf.el (ede-proj-configure-synchronize): If user events
1793 occur while waiting for the compile process to finish, pull them
1794 in and discard those events.
1795
dd9af436
CY
17962010-09-19 Eric Ludlam <zappo@gnu.org>
1797
1798 Synch Semantic to CEDET 1.0.
1799
1800 * semantic.el (semantic-version): Update to 2.0.
1801 (semantic-mode-map): Add "," and "m" bindings.
1802 (navigate-menu): Update.
1803
1804 * semantic/symref.el (semantic-symref-calculate-rootdir):
1805 New function.
1806 (semantic-symref-detect-symref-tool): Use it.
1807
1808 * semantic/symref/grep.el (semantic-symref-grep-shell): New var.
1809 (semantic-symref-perform-search): Use it. Calculate root dir with
1810 semantic-symref-calculate-rootdir.
1811 (semantic-symref-derive-find-filepatterns): Improve error message.
1812
1813 * semantic/symref/list.el
1814 (semantic-symref-results-mode-map): New bindings.
1815 (semantic-symref-auto-expand-results): New option.
1816 (semantic-symref-results-dump): Obey auto-expand.
1817 (semantic-symref-list-expand-all, semantic-symref-regexp)
1818 (semantic-symref-list-contract-all)
1819 (semantic-symref-list-map-open-hits)
1820 (semantic-symref-list-update-open-hits)
1821 (semantic-symref-list-create-macro-on-open-hit)
1822 (semantic-symref-list-call-macro-on-open-hits): New functions.
1823 (semantic-symref-list-menu-entries)
1824 (semantic-symref-list-menu): New vars.
1825 (semantic-symref-list-map-open-hits): Move cursor to beginning of
1826 match before calling the mapped function.
1827
1828 * semantic/doc.el
1829 (semantic-documentation-comment-preceeding-tag): Do nothing if the
1830 mode doesn't provide comment-start-skip.
1831
1832 * semantic/scope.el
1833 (semantic-analyze-scope-nested-tags-default): Strip duplicates.
1834 (semantic-analyze-scoped-inherited-tag-map): Take the tag we are
1835 looking for as part of the scoped tags list.
1836
4d789d84
SM
1837 * semantic/html.el (semantic-default-html-setup):
1838 Add senator-step-at-tag-classes.
dd9af436
CY
1839
1840 * semantic/decorate/include.el
1841 (semantic-decoration-on-unknown-includes): Change light bgcolor.
1842 (semantic-decoration-on-includes-highlight-default): Check that
0b381c7e 1843 the include tag has a position.
dd9af436
CY
1844
1845 * semantic/complete.el (semantic-collector-local-members):
1846 (semantic-complete-read-tag-local-members)
1847 (semantic-complete-jump-local-members): New class and functions.
1848 (semantic-complete-self-insert): Save excursion before completing.
1849
1850 * semantic/analyze/complete.el
1851 (semantic-analyze-possible-completions-default): If no completions
1852 are found, return the raw by-name-only completion list. Add FLAGS
1853 arguments. Add support for 'no-tc (type constraint) and
1854 'no-unique, or no stripping duplicates.
1855 (semantic-analyze-possible-completions-default): Add FLAGS arg.
1856
1857 * semantic/util-modes.el
1858 (semantic-stickyfunc-show-only-functions-p): New option.
1859 (semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
1860 the very first line in a buffer.
1861
1862 * semantic/util.el (semantic-hack-search)
1863 (semantic-recursive-find-nonterminal-by-name)
d1069532 1864 (semantic-current-tag-interactive): Delete.
4d789d84
SM
1865 (semantic-describe-buffer): Fix expand-nonterminal.
1866 Add lex-syntax-mods, type relation separator char, and command
dd9af436
CY
1867 separation char.
1868 (semantic-sanity-check): Only message if called interactively.
1869
1870 * semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
1871 :filename property and the tag position.
1872
1873 * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
1874 Add recursion limit.
1875
1876 * semantic/imenu.el (semantic-imenu-bucketize-type-members):
1877 Make this buffer local, not the obsoleted variable.
1878
1879 * semantic/idle.el: Add breadcrumbs support.
1880 (semantic-idle-summary-current-symbol-info-default)
1881 (semantic-idle-tag-highlight)
4d789d84
SM
1882 (semantic-idle-completion-list-default):
1883 Use semanticdb-without-unloaded-file-searches for speed, and to
dd9af436
CY
1884 conform to the controls that specify if the idle timer is supposed
1885 to be parsing unparsed includes.
1886 (semantic-idle-symbol-highlight-face)
1887 (semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
1888 Callers changed.
1889 (semantic-idle-work-parse-neighboring-files-flag): Default to nil.
1890 (semantic-idle-work-update-headers-flag): New var.
1891 (semantic-idle-work-for-one-buffer): Use it.
1892 (semantic-idle-local-symbol-highlight): Rename from
1893 semantic-idle-tag-highlight.
1894 (semantic-idle-truncate-long-summaries): New option.
1895
1896 * semantic/ia.el (semantic-ia-cache)
d1069532 1897 (semantic-ia-get-completions): Delete. Callers changed.
dd9af436
CY
1898 (semantic-ia-show-variants): New command.
1899 (semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
1900 (semantic-ia-show-summary): If there isn't anything to show, say so.
1901
1902 * semantic/grammar.el (semantic-grammar-create-package):
1903 Save the buffer even in batch mode.
1904
1905 * semantic/fw.el
1906 (semanticdb-without-unloaded-file-searches): New macro.
1907
1908 * semantic/dep.el (semantic-dependency-find-file-on-path):
1909 Fix case dereferencing ede-object when it is a list.
1910
1911 * semantic/db-typecache.el (semanticdb-expand-nested-tag)
1912 (semanticdb-typecache-faux-namespace): New functions.
1913 (semanticdb-typecache-file-tags)
1914 (semanticdb-typecache-merge-streams): Use them.
1915 (semanticdb-typecache-file-tags): When deriving tags from a file,
1916 give the mode a chance to monkey with the tag copy.
1917 (semanticdb-typecache-find-default): Wrap find in save-excursion.
1918 (semanticdb-typecache-find-by-name-helper): Merge found names down.
1919
1920 * semantic/db-global.el
1921 (semanticdb-enable-gnu-global-in-buffer): Don't show messages if
1922 GNU Global is not available and we don't want to throw an error.
1923
1924 * semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
1925 When trying to normalize the tag to a buffer, don't error if
1926 set-buffer method doesn't exist.
1927
1928 * semantic/db-file.el (semanticdb-save-db): Simplify msg.
1929
1930 * semantic/db.el (semanticdb-refresh-table): If forcing a
1931 refresh on a file not in a buffer, use semantic-find-file-noselect
1932 and delete the buffer after use.
1933 (semanticdb-current-database-list): When calculating root via
1934 hooks, force it through true-filename and skip the list of
1935 possible roots.
1936
1937 * semantic/ctxt.el (semantic-ctxt-imported-packages): New.
1938
1939 * semantic/analyze/debug.el
1940 (semantic-analyzer-debug-insert-tag): Reset standard output to
1941 current buffer.
1942 (semantic-analyzer-debug-global-symbol)
1943 (semantic-analyzer-debug-missing-innertype): Change "prefix" to
1944 "symbol" in messages.
1945
0b381c7e 1946 * semantic/analyze/refs.el (semantic-analyze-refs-impl)
dd9af436
CY
1947 (semantic-analyze-refs-proto): When calculating value, make sure
1948 the found tag is 'similar' to the originating tag.
1949 (semantic--analyze-refs-find-tags-with-parent): Attempt to
1950 identify matches via imported symbols of parents.
1951 (semantic--analyze-refs-full-lookup-with-parents): Do a deep
1952 search during the brute search.
1953
1954 * semantic/analyze.el
1955 (semantic-analyze-find-tag-sequence-default): Be robust to
1956 calculated scopes being nil.
1957
4d789d84
SM
1958 * semantic/bovine/c.el (semantic-c-describe-environment):
1959 Add project macro symbol array.
dd9af436
CY
1960 (semantic-c-parse-lexical-token): Add recursion limit.
1961 (semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
1962 New overrides.
1963 (semantic-expand-c-tag-namelist): Split a full type from a typedef
1964 out to its own tag.
1965 (semantic-expand-c-tag-namelist): Do not split out a typedef'd
1966 inline type if it is an anonymous type.
1967 (semantic-c-reconstitute-token): Use the optional initializers as
4d789d84
SM
1968 a clue that some function is probably a constructor.
1969 When defining the type of these constructors, split the parent name,
dd9af436
CY
1970 and use only the class part, if applicable.
1971
1972 * semantic/bovine/c-by.el:
1973 * semantic/wisent/python-wy.el: Regenerate.
1974
19752010-07-20 Juanma Barranquero <lekktu@gmail.com>
1976
1977 * semantic/db-file.el (object-write): Fix typo in docstring.
1978
19792010-06-03 Eric Ludlam <zappo@gnu.org>
1980
1981 * semantic/lex-spp.el
1982 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
1983 invalid values during save, just save a nil (Bug#6324).
1984
19852010-05-31 Jonathan Marchand <jonathlela@gmail.com> (tiny change)
1986
1987 * ede/cpp-root.el (ede-set-project-variables): Fix feature name
1988 (bug#6231).
1989
266a86bd
CY
19902010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1991
1992 Use a mode-line spec rather than a static string in Semantic.
1993 * semantic/util-modes.el:
1994 (semantic-minor-modes-format): New var to replace...
1995 (semantic-minor-modes-status): Remove.
1996 (semantic-mode-line-update): Construct a mode-line spec rather than
1997 a static string so that mouse buttons can be used on individual minor
1998 modes and so that semantic-mode-line-update only needs to be called
1999 when global settings are changed.
2000 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
2001 Call semantic-mode-line-update.
2002 (semantic-toggle-minor-mode-globally): Don't assume mode is on
2003 minor-mode-alist, check semantic-minor-mode-alist as well.
2004 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
2005 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
2006 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
2007 * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
2008 * semantic/idle.el (semantic-idle-scheduler-mode)
2009 (define-semantic-idle-service, semantic-idle-summary-mode):
2010 * semantic/decorate/mode.el (semantic-decoration-mode):
2011 Don't call semantic-mode-line-update any more.
2012
20132010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2014
2015 Use define-minor-mode in CEDET where applicable.
2016
2017 * srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
2018 Use define-minor-mode.
2019
2020 * semantic/util-modes.el (semantic-add-minor-mode):
2021 Remove unused arg `keymap' and code redundant with define-minor-mode.
2022 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
2023 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
2024 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
2025 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
2026 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
2027 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
2028 Use define-minor-mode.
2029 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
2030 (semantic-show-unmatched-syntax-mode-setup)
2031 (semantic-show-parser-state-mode-setup)
2032 (semantic-highlight-func-mode-setup): Inline into sole caller.
2033
2034 * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2035 (semantic-mru-bookmark-mode): Use define-minor-mode.
2036 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
2037
2038 * semantic/idle.el (define-semantic-idle-service):
2039 Use define-minor-mode and inline setup function into its sole caller.
2040 (semantic-idle-scheduler-mode-setup)
2041 (semantic-idle-summary-mode-setup): Inline into sole caller.
2042 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
2043 Use define-minor-mode.
2044
2045 * semantic/decorate/mode.el (global-semantic-decoration-mode)
2046 (semantic-decoration-mode): Use define-minor-mode.
2047 (semantic-decoration-mode-setup): Inline into sole caller.
2048
2049 * ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
2050 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
2051 (ede-dired-add-to-target): Use dolist.
2052
266a86bd
CY
20532010-04-29 Chong Yidong <cyd@stupidchicken.com>
2054
2055 * semantic.el (semantic-completion-at-point-function):
2056 New function.
2057 (semantic-mode): Use semantic-completion-at-point-function for
2058 completion-at-point-functions instead.
2059
20602010-04-28 Chong Yidong <cyd@stupidchicken.com>
2061
2062 * semantic.el (semantic-mode): When enabled, add
2063 semantic-ia-complete-symbol to completion-at-point-functions.
2064
2065 * semantic/ia.el (semantic-ia-complete-symbol): Return nil
2066 if Semantic is not active.
2067
20682010-04-19 Chong Yidong <cyd@stupidchicken.com>
2069
2070 * ede/pmake.el (ede-proj-makefile-insert-variables):
2071 Don't destroy list before using it.
2072
dd9af436
CY
20732010-04-02 Juanma Barranquero <lekktu@gmail.com>
2074
2075 * semantic/imenu.el (semantic-imenu-bucketize-type-members)
2076 (semantic-create-imenu-directory-index): Fix typos in docstrings.
2077 (semantic-imenu-goto-function): Reflow docstring.
2078
20792010-03-24 Juanma Barranquero <lekktu@gmail.com>
2080
2081 * srecode/table.el (srecode-template-table): Fix docstring typo.
2082
266a86bd
CY
20832010-03-24 Glenn Morris <rgm@gnu.org>
2084
2085 * semantic/bovine/c.el (semantic-c-describe-environment):
2086 Consistently check ede-object is bound throughout.
2087
2088 * ede/project-am.el (ede-shell-run-something): Declare.
2089
dd9af436
CY
20902010-03-13 Eric M. Ludlam <zappo@gnu.org>
2091
2092 * semantic/imenu.el: New file, from the CEDET repository
2093 (Bug#5412).
2094
20952010-03-06 Glenn Morris <rgm@gnu.org>
2096
2097 * semantic/grammar.el (semantic-grammar-header-template):
2098 Update template copyright to GPLv3+.
2099
21002010-02-28 Chong Yidong <cyd@stupidchicken.com>
2101
2102 * semantic/db-find.el
2103 (semanticdb-find-translate-path-brutish-default):
4d789d84
SM
2104 * ede/make.el (ede-make-check-version):
2105 Use with-current-buffer instead of save-excursion.
dd9af436 2106
76e3243a
JB
21072010-02-24 Eduard Wiebe <usenet@pusto.de>
2108
2109 * semantic/wisent/javascript.el (wisent-javascript-jv-expand-tag):
2110 Avoid c(ad)ddr and use c(ad)r of cddr (Bug#5640).
2111
dd9af436
CY
21122010-02-16 Chong Yidong <cyd@stupidchicken.com>
2113
2114 * data-debug.el (data-debug): Move to extensions group.
2115
2116 * ede.el (ede):
2117 * srecode.el (srecode):
2118 * semantic.el (semantic): Put in tools and extensions group.
2119
21202010-02-14 Juanma Barranquero <lekktu@gmail.com>
2121
2122 * ede.el (ede-run-target, project-delete-target)
2123 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
2124 (ede-adebug-project, ede-adebug-project-parent)
2125 (ede-adebug-project-root): Fix typos in docstrings.
2126
21272010-01-18 Juanma Barranquero <lekktu@gmail.com>
2128
2129 * ede/locate.el (ede-locate-file-in-project)
2130 (ede-locate-file-in-project-impl): Fix typos in docstrings.
2131 (ede-enable-locate-on-project): Fix typos in error messages.
2132
2133 * semantic/util-modes.el (semantic-unmatched-syntax-face)
2134 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
2135 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
2136 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
2137 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
2138 Fix typos in menu help.
2139
2140 * semantic.el (semantic-require-version, semantic--buffer-cache)
2141 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
2142 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
2143 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
2144 (semantic-parse-stream, semantic-parse-region)
2145 (semantic-parse-region-default, semantic--set-buffer-cache)
2146 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
2147 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
2148 (semantic-default-submodes):
2149 * semantic/db-ebrowse.el (semanticdb-table-ebrowse)
2150 (semanticdb-create-ebrowse-database)
2151 (semanticdb-find-tags-for-completion-method)
2152 (semanticdb-find-tags-by-class-method)
2153 (semanticdb-deep-find-tags-by-name-method)
2154 (semanticdb-deep-find-tags-for-completion-method):
2155 * semantic/db-el.el (semanticdb-elisp-mapatom-collector)
2156 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
2157 (semanticdb-find-tags-for-completion-method)
2158 (semanticdb-find-tags-by-class-method)
2159 (semanticdb-deep-find-tags-for-completion-method):
2160 * semantic/db-find.el (semanticdb-find-translate-path)
2161 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
2162 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
2163 (semanticdb-find-tags-by-name-method)
2164 (semanticdb-find-tags-by-name-regexp-method)
2165 (semanticdb-find-tags-for-completion-method)
2166 (semanticdb-find-tags-by-class-method)
2167 (semanticdb-find-tags-external-children-of-type-method)
2168 (semanticdb-find-tags-subclasses-of-type-method)
2169 (semanticdb-deep-find-tags-by-name-method)
2170 (semanticdb-deep-find-tags-by-name-regexp-method)
2171 (semanticdb-deep-find-tags-for-completion-method):
2172 * semantic/db-global.el (semanticdb-enable-gnu-global-hook)
2173 (semanticdb-enable-gnu-global-in-buffer)
2174 (semanticdb-find-tags-for-completion-method)
2175 (semanticdb-deep-find-tags-by-name-method)
2176 (semanticdb-deep-find-tags-for-completion-method):
2177 * semantic/db-javascript.el (semanticdb-javascript-tags)
2178 (javascript-mode, semanticdb-find-translate-path)
2179 (semanticdb-find-tags-for-completion-method)
2180 (semanticdb-find-tags-by-class-method)
2181 (semanticdb-deep-find-tags-by-name-method)
2182 (semanticdb-deep-find-tags-for-completion-method)
2183 (semanticdb-find-tags-external-children-of-type-method):
2184 * semantic/idle.el (semantic-idle-work-core-handler)
2185 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
2186 (global-semantic-idle-scheduler-mode):
2187 * srecode/dictionary.el (srecode-field-value)
2188 (srecode-dictionary-add-section-dictionary):
2189 Fix typos in docstrings.
2190
21912010-01-17 Glenn Morris <rgm@gnu.org>
2192
2193 * semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
2194
21952010-01-17 Juanma Barranquero <lekktu@gmail.com>
2196
2197 * semantic.el (semantic-mode): Fix typos in docstrings.
2198
21992010-01-16 Mario Lang <mlang@delysid.org>
2200
2201 * ede/cpp-root.el (ede-cpp-root-project):
2202 * ede/files.el (ede-expand-filename):
2203 * ede/simple.el (ede-simple-project):
2204 * semantic/complete.el (semantic-complete-read-tag-engine)
2205 (semantic-complete-inline-tag-engine):
2206 * semantic/db-el.el (semanticdb-equivalent-mode):
2207 * semantic/db-global.el (semanticdb-equivalent-mode):
2208 * semantic/db-javascript.el (semanticdb-equivalent-mode):
2209 * semantic/db.el (semanticdb-equivalent-mode):
2210 * semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
2211 * semantic/idle.el (semantic-idle-work-for-one-buffer):
2212 Remove duplicated words in doc-strings.
2213
22142010-01-14 Juanma Barranquero <lekktu@gmail.com>
2215
2216 * semantic/edit.el (semantic-reparse-needed-change-hook)
2217 (semantic-no-reparse-needed-change-hook):
2218 * srecode/insert.el (srecode-resolve-argument-list)
2219 (srecode-template-inserter-blank, srecode-template-inserter-variable)
2220 (srecode-template-inserter-ask, srecode-template-inserter-width)
2221 (srecode-template-inserter-section-start)
2222 (srecode-template-inserter-section-end, srecode-insert-method):
ed9265fc 2223 Fix typos in docstrings.
dd9af436
CY
2224
22252010-01-12 Juanma Barranquero <lekktu@gmail.com>
2226
2227 * data-debug.el (data-debug): Fix customization group reference.
2228
22292010-01-12 Juanma Barranquero <lekktu@gmail.com>
2230
2231 * semantic/analyze.el (semantic-analyze-push-error)
2232 (semantic-analyze-context, semantic-analyze-context-assignment)
2233 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
2234 * semantic/java.el (java-mode, semantic-tag-include-filename)
2235 (semantic-java-doc-keywords-map):
2236 * semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
2237 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
2238 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
2239 (semantic-c-classname, semantic-format-tag-uml-prototype)
2240 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
2241 * semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
2242 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
2243 (semantic-get-local-variables, semantic-end-of-command)
2244 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
2245 (lisp-mode):
2246 * semantic/bovine/make.el (makefile-mode):
2247 * semantic/wisent/python.el (wisent-python-string-re)
2248 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
2249 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
2250 (semantic-lex, semantic-get-local-variables, python-mode):
2251 * semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
2252 * srecode/extract.el (srecode-extract-state-set)
2253 (srecode-extract-method): Fix typos in docstrings.
2254
22552010-01-10 Chong Yidong <cyd@stupidchicken.com>
2256
2257 * semantic.el (semantic-new-buffer-setup-functions):
2258 Add python parser.
2259
22602010-01-10 Richard Kim <emacs18@gmail.com>
2261
2262 * semantic/wisent/python-wy.el:
2263 * semantic/wisent/python.el: New files.
2264
22652010-01-02 Juanma Barranquero <lekktu@gmail.com>
2266
2267 * semantic/db-typecache.el (semanticdb-typecache-find-default):
2268 Fix typo in docstring.
2269
22702009-12-14 Chong Yidong <cyd@stupidchicken.com>
2271
2272 * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2273 (semantic-mru-bookmark-mode): Doc fixes.
2274
2275 * semantic/db.el (semanticdb-cache-get): Use error instead
2276 of assert.
2277
22782009-12-05 Chong Yidong <cyd@stupidchicken.com>
2279
2280 * semantic/ia.el (semantic-ia-complete-symbol):
2281 Make argument optional.
2282
22832009-12-05 Eric Ludlam <zappo@gnu.org>
2284
2285 * semantic/bovine/c.el (semantic-c-describe-environment):
2286 Describe project macro symbols.
2287
2288 * semantic/complete.el (semantic-complete-do-completion):
2289 Don't call semantic-collector-current-exact-match.
2290
2291 * ede.el (ede-apply-preprocessor-map): Accept lists of
2292 ede-objects as targets.
2293
4d789d84
SM
2294 * ede/pmake.el (ede-proj-makefile-insert-variables):
2295 Output a target's object list even if compiler vars are already in the
dd9af436
CY
2296 Makefile.
2297
2298 * ede/emacs.el (ede-preprocessor-map): Add config.h to the
2299 list of headers producing necessary macros.
2300
23012009-11-24 Glenn Morris <rgm@gnu.org>
2302
2303 * semantic/idle.el (global-semantic-idle-scheduler-mode):
2304 Move after definition of global-semantic-idle-tag-highlight-mode.
2305
23062009-11-22 Chong Yidong <cyd@stupidchicken.com>
2307
2308 * srecode/map.el (srecode-get-maps):
2309 * semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
2310 * semantic/wisent/comp.el (wisent-toggle-verbose-flag):
2311 * semantic/decorate/mode.el (semantic-decoration-mode)
2312 (semantic-toggle-decoration-style):
2313 * semantic/decorate/include.el
2314 (semantic-decoration-include-describe)
2315 (semantic-decoration-unknown-include-describe)
2316 (semantic-decoration-unparsed-include-describe)
2317 (semantic-decoration-all-include-summary):
2318 * semantic/bovine/c.el (semantic-c-debug-mode-init):
2319 * semantic/analyze/complete.el
2320 (semantic-analyze-possible-completions):
2321 * semantic/util-modes.el (semantic-highlight-edits-mode)
2322 (semantic-show-unmatched-syntax-mode)
2323 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
2324 (semantic-highlight-func-mode):
2325 * semantic/util.el (semantic-describe-buffer):
2326 * semantic/symref.el (semantic-symref-find-references-by-name)
2327 (semantic-symref-find-tags-by-name)
2328 (semantic-symref-find-tags-by-regexp)
2329 (semantic-symref-find-tags-by-completion)
2330 (semantic-symref-find-file-references-by-name)
2331 (semantic-symref-find-text):
2332 * semantic/senator.el (senator-copy-tag, senator-kill-tag)
2333 (senator-yank-tag):
2334 * semantic/scope.el (semantic-calculate-scope):
2335 * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
2336 * semantic/idle.el (semantic-idle-scheduler-mode)
2337 (define-semantic-idle-service):
2338 * semantic/complete.el (semantic-complete-analyze-inline)
2339 (semantic-complete-analyze-inline-idle):
2340 * semantic/analyze.el (semantic-analyze-current-context):
2341 * mode-local.el (describe-mode-local-bindings)
2342 (describe-mode-local-bindings-in-mode):
2343 * ede/make.el (ede-make-check-version):
2344 * ede/locate.el (ede-enable-locate-on-project):
2345 * cedet-idutils.el (cedet-idutils-expand-filename)
2346 (cedet-idutils-version-check):
2347 * cedet-global.el (cedet-gnu-global-expand-filename)
2348 (cedet-gnu-global-version-check):
2349 * cedet-cscope.el (cedet-cscope-expand-filename)
2350 (cedet-cscope-version-check): Use called-interactively-p instead
2351 of interactive-p.
2352
2353 * semantic/ia.el (semantic-ia-completion-format-tag-function):
2354 Use semantic-format-tag-prototype.
2355
23562009-11-21 Chong Yidong <cyd@stupidchicken.com>
2357
2358 * semantic/complete.el (semantic-complete-read-tag-engine)
2359 (semantic-complete-jump-local, semantic-complete-jump):
2360 Improve prompt string.
2361
23622009-11-20 Chong Yidong <cyd@stupidchicken.com>
2363
2364 * semantic/complete.el (semantic-complete-inline-map): Doc fix.
2365
2366 * semantic/idle.el (define-semantic-idle-service)
2367 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
2368
23692009-11-20 Chong Yidong <cyd@stupidchicken.com>
2370
2371 * cedet.el (cedet-menu-map): Re-order menu items.
2372
2373 * semantic.el: Enable idle-mode menu items only if
2374 global-semantic-idle-scheduler-mode is enabled.
2375 (semantic-default-submodes): Doc fix.
2376
2377 * semantic/idle.el (global-semantic-idle-scheduler-mode):
2378 When turning off, disable other idle modes.
2379
23802009-11-15 Chong Yidong <cyd@stupidchicken.com>
2381
2382 * semantic/idle.el (semantic-idle-summary-mode)
2383 (semantic-idle-summary-mode): Define using define-minor-mode
2384 instead of define-semantic-idle-service.
2385 (semantic-idle-summary-mode): New function.
2386 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
2387 that mouse motion does not reset the echo area.
2388
23892009-11-08 Chong Yidong <cyd@stupidchicken.com>
2390
4d789d84
SM
2391 * semantic/ctxt.el (semantic-get-local-variables):
2392 Disable the progress reporter entirely.
dd9af436
CY
2393
23942009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2395
2396 * semantic/fw.el (semantic/loaddefs):
2397 * srecode.el (srecode/loaddefs):
2398 * ede.el (ede/loaddefs): Load rather than require.
2399 * ede/cpp-root.el:
2400 * ede/emacs.el:
2401 * ede/files.el:
2402 * ede/linux.el:
2403 * ede/locate.el:
2404 * ede/make.el:
2405 * ede/shell.el:
2406 * ede/speedbar.el:
2407 * ede/system.el:
2408 * ede/util.el:
2409 * semantic/analyze.el:
2410 * semantic/bovine.el:
2411 * semantic/complete.el:
2412 * semantic/ctxt.el:
2413 * semantic/db-file.el:
2414 * semantic/db-find.el:
2415 * semantic/db-global.el:
2416 * semantic/db-mode.el:
2417 * semantic/db-typecache.el:
2418 * semantic/db.el:
2419 * semantic/debug.el:
2420 * semantic/dep.el:
2421 * semantic/doc.el:
2422 * semantic/edit.el:
2423 * semantic/find.el:
2424 * semantic/format.el:
2425 * semantic/html.el:
2426 * semantic/ia-sb.el:
2427 * semantic/ia.el:
2428 * semantic/idle.el:
2429 * semantic/lex-spp.el:
2430 * semantic/lex.el:
2431 * semantic/mru-bookmark.el:
2432 * semantic/scope.el:
2433 * semantic/senator.el:
2434 * semantic/sort.el:
2435 * semantic/symref.el:
2436 * semantic/tag-file.el:
2437 * semantic/tag-ls.el:
2438 * semantic/tag-write.el:
2439 * semantic/tag.el:
2440 * semantic/util-modes.el:
2441 * semantic/analyze/complete.el:
2442 * semantic/analyze/refs.el:
2443 * semantic/bovine/c.el:
2444 * semantic/bovine/gcc.el:
2445 * semantic/bovine/make.el:
2446 * semantic/bovine/scm.el:
2447 * semantic/decorate/include.el:
2448 * semantic/decorate/mode.el:
2449 * semantic/symref/cscope.el:
2450 * semantic/symref/global.el:
2451 * semantic/symref/grep.el:
2452 * semantic/symref/idutils.el:
2453 * semantic/symref/list.el:
2454 * semantic/wisent/java-tags.el:
2455 * semantic/wisent/javascript.el:
2456 * srecode/compile.el:
2457 * srecode/cpp.el:
2458 * srecode/document.el:
2459 * srecode/el.el:
2460 * srecode/expandproto.el:
2461 * srecode/getset.el:
2462 * srecode/insert.el:
2463 * srecode/java.el:
2464 * srecode/map.el:
2465 * srecode/mode.el:
2466 * srecode/template.el:
2467 * srecode/texi.el: Remove the file-local setting of
2468 generated-autoload-feature.
2469
24702009-11-03 Glenn Morris <rgm@gnu.org>
2471
2472 * mode-local.el (with-mode-local): Doc fix.
2473
24742009-10-31 Chong Yidong <cyd@stupidchicken.com>
2475
2476 * cedet.el (cedet-menu-map): Remove Semantic and EDE menu
2477 items.
2478
2479 * ede.el (ede-minor-mode):
2480 * semantic.el (semantic-mode): Toggle menu separators.
2481
24822009-10-31 Glenn Morris <rgm@gnu.org>
2483
2484 * semantic/tag.el (semantic--tag-link-list-to-buffer):
2485 Use mapc rather than mapcar because the return value is never used.
2486
266a86bd
CY
2487 * srecode/template.el, semantic/wisent/javascript.el:
2488 * semantic/wisent/java-tags.el, semantic/texi.el:
dd9af436
CY
2489 * semantic/html.el:
2490 Suppress harmless warnings about setting up semantic-imenu (not
2491 part of Emacs) variables.
2492
24932009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
2494
2495 * srecode/srt-mode.el (semantic-analyze-possible-completions):
2496 * semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
2497 * semantic/symref/grep.el (semantic-symref-perform-search):
2498 * semantic/bovine/gcc.el (semantic-gcc-query):
2499 * semantic/bovine/c.el (semantic-c-parse-lexical-token):
2500 * semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
2501 (semantic-analyzer-debug-global-symbol)
2502 (semantic-analyzer-debug-missing-innertype)
2503 (semantic-analyzer-debug-insert-include-summary):
2504 * semantic/util.el (semantic-file-tag-table):
2505 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
2506 (semantic-recursive-find-nonterminal-by-name):
2507 * semantic/tag-ls.el (semantic-tag-calculate-parent-default):
2508 * semantic/tag-file.el (semantic-prototype-file):
2509 * semantic/symref.el (semantic-symref-parse-tool-output):
2510 * semantic/sb.el (semantic-sb-fetch-tag-table):
2511 * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
2512 * semantic/idle.el (semantic-idle-work-for-one-buffer):
2513 (semantic-idle-summary-maybe-highlight):
2514 * semantic/ia-sb.el (semantic-ia-speedbar)
2515 (semantic-ia-sb-tag-info):
2516 * semantic/grammar.el (semantic-analyze-possible-completions):
2517 * semantic/find.el (semantic-brute-find-tag-by-position):
2518 * semantic/ede-grammar.el (project-compile-target):
2519 (ede-proj-makefile-insert-variables):
2520 * semantic/debug.el (semantic-debug-set-parser-location):
2521 (semantic-debug-set-source-location, semantic-debug-interface-layout)
2522 (semantic-debug-mode, semantic-debug):
2523 * semantic/db.el (semanticdb-needs-refresh-p):
2524 * semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
2525 * semantic/db-javascript.el (semanticdb-equivalent-mode):
2526 * semantic/db-find.el (semanticdb-find-log-new-search)
2527 (semanticdb-find-translate-path-includes--internal)
2528 (semanticdb-reset-log, semanticdb-find-log-activity):
2529 * semantic/db-file.el (object-write):
2530 * semantic/db-el.el (semanticdb-equivalent-mode):
2531 * semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
2532 (semanticdb-create-ebrowse-database):
2533 * semantic/db-debug.el (semanticdb-table-sanity-check):
2534 * semantic/complete.el (semantic-displayor-focus-request)
2535 (semantic-collector-calculate-completions-raw)
2536 (semantic-complete-read-tag-analyzer):
2537 * semantic/analyze.el (semantic-analyze-pulse):
2538 * ede/util.el (ede-update-version-in-source):
2539 * ede/proj.el (project-delete-target):
2540 * ede/proj-elisp.el (ede-update-version-in-source)
2541 (ede-proj-flush-autoconf):
2542 * ede/pconf.el (ede-proj-configure-synchronize)
2543 (ede-proj-configure-synchronize):
2544 * ede/locate.el (ede-locate-file-in-project-impl):
2545 * ede/linux.el (ede-linux-version):
2546 * ede/emacs.el (ede-emacs-version):
2547 * ede/dired.el (ede-dired-add-to-target):
2548 * ede.el (ede-buffer-header-file, ede-find-target)
2549 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
2550 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
2551 * cedet-idutils.el (cedet-idutils-fnid-call):
2552 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
2553 (cedet-idutils-version-check):
2554 * cedet-global.el (cedet-gnu-global-call):
2555 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
2556 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
2557 * cedet-cscope.el (cedet-cscope-call)
2558 (cedet-cscope-expand-filename, cedet-cscope-version-check):
2559 Use with-current-buffer.
2560 * ede.el (ede-make-project-local-variable)
2561 (ede-set-project-variables, ede-set): Use dolist.
2562
25632009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2564
2565 * mode-local.el (make-obsolete-overload): Add `when' argument.
2566 (overload-docstring-extension): Use that info.
2567 * semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
2568 * semantic/idle.el (semantic-eldoc-current-symbol-info):
2569 * semantic/tag-ls.el (semantic-nonterminal-protection)
2570 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
2571 (semantic-nonterminal-full-name): Add the new `when' info.
2572 * semantic/decorate/mode.el (semantic/decorate): Require CL for
2573 `assert'.
2574
25752009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2576
2577 * semantic/fw.el (semantic-alias-obsolete)
2578 (semantic-varalias-obsolete): Make the `when' arg mandatory.
2579 (define-mode-overload-implementation):
2580 * semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
2581 * semantic/wisent.el (wisent-lex-make-token-table):
2582 * semantic/util.el (semantic-file-token-stream)
2583 (semantic-something-to-stream):
2584 * semantic/tag.el (semantic-tag-make-assoc-list)
2585 (semantic-expand-nonterminal):
2586 * semantic/tag-file.el (semantic-find-nonterminal)
2587 (semantic-find-dependency, semantic-find-nonterminal)
2588 (semantic-find-dependency):
2589 * semantic/lex.el (semantic-flex-start, semantic-flex-end)
2590 (semantic-flex-text, semantic-flex-make-keyword-table)
2591 (semantic-flex-keyword-p, semantic-flex-keyword-put)
2592 (semantic-flex-keyword-get, semantic-flex-map-keywords)
2593 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
2594 * semantic/java.el (semantic-java-prototype-nonterminal):
2595 * semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
2596 (semantic-after-idle-scheduler-reparse-hooks):
2597 * semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
2598 * semantic/db-mode.el (semanticdb-mode-hooks):
2599 * semantic.el (semantic-toplevel-bovine-table)
2600 (semantic-toplevel-bovine-cache)
2601 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
2602 (semantic-init-mode-hooks, semantic-init-db-hooks)
2603 (semantic-bovination-working-type): Provide the `when' arg.
2604
26052009-10-24 Chong Yidong <cyd@stupidchicken.com>
2606
2607 * semantic/util.el (semantic-recursive-find-nonterminal-by-name):
2608 * semantic/tag.el (semantic-token-type-parent): Add WHEN
2609 argument to make-obsolete.
2610
2611 * semantic/fw.el (semantic-alias-obsolete)
2612 (semantic-varalias-obsolete): Add optional WHEN argument.
2613
26142009-10-21 Eric Ludlam <zappo@gnu.org>
2615
2616 * semantic/bovine/c.el (semantic-c-debug-mode-init)
2617 (semantic-c-debug-mode-init-pch): New functions.
2618 (semantic-c-debug-mode-init-last-mode): New var.
2619 (semantic-c-parse-lexical-token): Use them.
2620
2621 * semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
2622 When extracting the argument list, limit only by point-max.
2623
26242009-10-17 Chong Yidong <cyd@stupidchicken.com>
2625
2626 * srecode/srt.el:
2627 * srecode/compile.el:
2628 * semantic/mru-bookmark.el:
2629 * semantic/debug.el:
2630 * semantic/complete.el:
2631 * semantic/analyze.el: Require CL when compiling.
2632
26332009-10-17 Eric Ludlam <zappo@gnu.org>
2634
2635 * semantic/scope.el
2636 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
2637 tmpscope so that the regular scope will continue to work.
2638
2639 * semantic/idle.el (semantic-idle-tag-highlight):
2640 Use semantic-idle-summary-highlight-face as the highlighting.
2641
dd9af436
CY
2642 * ede/project-am.el (project-run-target): New method.
2643 (project-run-target): New method.
2644
2645 * ede.el (ede-target): Add run target menu item.
2646 (ede-project, ede-minor-keymap): Add ede-run-target binding.
2647 (ede-run-target): New function.
2648 (ede-target::project-run-target): New method.
2649
2650 * ede/proj.el (project-run-target): New method.
2651
2652 * ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
2653 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
2654 Add :rules.
2655 (ede-proj-target-makefile-shared-object): Only libtool compilers
2656 now available. Add linkers for libtool.
2657 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
2658 (ede-proj-makefile-target-name): Always use .la extension.
2659
2660 * ede/proj-prog.el (project-run-target): New method.
2661
2662 * ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
2663 (ede-g++-linker): Change Change link lines.
2664
2665 * ede/pmake.el (ede-pmake-insert-variable-shared):
2666 When searching for old variables, go to the end of the buffer and
2667 search backward from there.
2668 (ede-proj-makefile-automake-insert-subdirs)
2669 (ede-proj-makefile-automake-insert-extradist): New methods.
2670 (ede-proj-makefile-create): Use them.
2671
2672 * ede/pconf.el (ede-proj-configure-test-required-file):
2673 Force FILE to expand to the current target. Use file-exists-p to
2674 check that it exists.
2675
2676 * ede/linux.el (ede-linux-version): Don't call "head".
2677 (ede-linux-load): Wrap dir in file-name-as-directory.
2678 Set :version slot.
2679
2680 * ede/files.el (ede-get-locator-object): When enabling
2681 locate, do so on "top".
2682
2683 * ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
2684 file-name-as-directory during compare.
2685 (ede-emacs-version): Return Emacs/XEmacs differentiator.
2686 Get version number from different places. Don't call egrep.
2687 (ede-emacs-load): Set :version slot. Call file-name-as-directory
2688 to set the directory.
2689
2690 * ede/shell.el: New file.
2691
2692 * inversion.el (inversion-decoders): Allow for stray . in
2693 alpha/beta variants.
2694
26952009-10-17 Glenn Morris <rgm@gnu.org>
2696
2697 * semantic/grammar.el (semantic-grammar--lex-delim-spec):
2698 All errors should have messages.
2699
27002009-10-10 Sascha Wilde <wilde@sha-bang.de>
2701
2702 * ede/proj-shared.el (ede-proj-makefile-target-name):
2703 Use .la for Automake.
2704
27052009-10-09 Chong Yidong <cyd@stupidchicken.com>
2706
2707 * ede/pconf.el (ede-proj-configure-synchronize):
2708 Use "autoreconf -i". Suggested by Andreas Schwab.
2709
27102009-10-08 Chong Yidong <cyd@stupidchicken.com>
2711
2712 * ede/proj.el (project-make-dist, project-compile-project):
2713 Fix filename test.
2714 (ede-proj-dist-makefile): Use expand-file-name instead of concat
2715 to expand file names.
2716
27172009-10-08 Chong Yidong <cyd@stupidchicken.com>
2718
2719 * ede/proj-obj.el (ede-gcc-linker): New var.
2720 (ede-proj-target-makefile-objectcode): Use it.
2721
2722 * ede/source.el (ede-want-any-source-files-p)
2723 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
2724 Return search result. This error was introduced while merging.
2725
27262009-10-04 Chong Yidong <cyd@stupidchicken.com>
2727
2728 * semantic.el (semantic-new-buffer-setup-functions): New option.
2729 (semantic-new-buffer-fcn): Call parser setup functions here.
2730 (semantic-mode): Don't call parser setup functions here, it's done
2731 in semantic-new-buffer-fcn now.
2732 (semantic-mode): Parse all existing buffers when enabled.
2733
2734 * srecode/compile.el (srecode-compile-file):
2735 Call semantic-new-buffer-fcn if the buffer has not been parsed.
2736
27372009-10-04 Chong Yidong <cyd@stupidchicken.com>
2738
2739 * ede/pmake.el (ede-pmake-insert-variable-once): Delete.
2740
2741 * ede/proj-comp.el: Don't require ede/pmake at toplevel.
2742 (proj-comp-insert-variable-once): New macro, renamed from
2743 ede-pmake-insert-variable-once in ede/pmake.edl.
2744 (ede-proj-makefile-insert-variables): Use it.
2745
27462009-10-04 Juanma Barranquero <lekktu@gmail.com>
2747
2748 * ede/makefile-edit.el (makefile-beginning-of-command)
2749 (makefile-end-of-command):
2750 * srecode/srt-mode.el (semantic-beginning-of-context)
2751 (semantic-end-of-context): Fix previous change. Doc fixes.
2752
27532009-10-04 Juanma Barranquero <lekktu@gmail.com>
2754
2755 * ede/makefile-edit.el (makefile-beginning-of-command)
2756 (makefile-end-of-command):
2757 * semantic/lex.el (semantic-lex-token):
2758 * semantic/analyze/fcn.el
2759 (semantic-analyze-dereference-metatype-1):
2760 * semantic/bovine/c.el (semantic-lex-cpp-define)
2761 (semantic-lex-cpp-undef):
2762 * semantic/wisent/wisent.el (wisent-skip-block):
2763 * srecode/srt-mode.el (semantic-beginning-of-context)
2764 (semantic-end-of-context): Fix typos in docstrings.
2765
27662009-10-04 Chong Yidong <cyd@stupidchicken.com>
2767
2768 * ede.el (ede-project-placeholder-cache-file):
2769 * semantic/db-file.el (semanticdb-default-save-directory):
2770 * srecode/map.el (srecode-map-save-file):
2771 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
2772
27732009-10-03 Chong Yidong <cyd@stupidchicken.com>
2774
2775 * srecode/insert.el: Require srecode/args.
2776
2777 * srecode/args.el: Require srecode/dictionary instead of
2778 srecode/insert.
2779
2780 * srecode/srt-mode.el (srecode-template-mode): Doc fix.
2781
2782 * files.el (auto-mode-alist): Add .srt and Project.ede.
2783
2784 * semantic.el (semantic-mode):
2785 Handle srecode-template-mode-hook as well.
2786 (semantic-mode): Use js-mode-hook for Javascript hook.
2787
2788 * srecode/template.el: Remove hook variable.
2789
2790 * ede/proj-comp.el: Require ede/pmake when compiling.
2791
2792 * ede.el (ede-target-forms-menu): Don't enable if no
2793 projects exist.
2794 (ede-project-placeholder-cache-file): Default to a file in
2795 user-emacs-directory.
2796
2797 * srecode/map.el (srecode-map-base-template-dir): Look for
2798 templates in data-directory.
2799 (srecode-map-save-file): Default to a file in user-emacs-directory.
2800
2801 * ede/srecode.el (ede-srecode-setup): Use default templates
2802 directory.
2803
28042009-09-30 Eric Ludlam <zappo@gnu.org>
2805
2806 * semantic/util-modes.el (semantic-highlight-func-mode):
2807 Doc fix.
2808
2809 * ede/proj-comp.el (ede-proj-makefile-insert-variables):
2810 Only insert each variable once.
2811
2812 * ede/pmake.el (ede-pmake-insert-variable-once): New macro.
2813 (ede-pmake-insert-variable-shared): Use it.
2814
2815 * ede/cpp-root.el (ede-preprocessor-map): Do not deref table
2816 for lexical table iff table is nil.
2817
28182009-10-01 Glenn Morris <rgm@gnu.org>
2819
2820 * semantic/bovine/gcc.el
2821 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
2822 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
2823
28242009-10-03 Glenn Morris <rgm@gnu.org>
2825
2826 * semantic/db-find.el (data-debug-insert-tag-list): Comment out
2827 declaration, currently false.
2828
28292009-10-01 Glenn Morris <rgm@gnu.org>
2830
2831 * cedet-files.el (cedet-directory-name-to-file-name):
2832 * cedet-idutils.el (cedet-idutils-search)
2833 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
2834 (cedet-idutils-version-check):
2835 * cedet.el (cedet-version):
2836 * data-debug.el (data-debug-insert-overlay-button)
2837 (data-debug-insert-overlay-list-button)
2838 (data-debug-insert-buffer-button)
2839 (data-debug-insert-buffer-list-button)
2840 (data-debug-insert-process-button, data-debug-insert-ring-button)
2841 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
2842 (data-debug-insert-stuff-vector-button)
2843 (data-debug-insert-symbol-button, data-debug-insert-string)
2844 (data-debug-insert-number, data-debug-insert-lambda-expression)
2845 (data-debug-insert-nil, data-debug-insert-simple-thing)
2846 (data-debug-insert-custom, data-debug-edebug-expr):
2847 * ede.el (ede-auto-add-method, ede-project-class-files)
2848 (global-ede-mode-map, ede-new, ede-debug-target)
2849 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
2850 * semantic.el (semantic-minimum-working-buffer-size)
2851 (semantic-fetch-tags, semantic-submode-list)
2852 (semantic-default-submodes):
2853 * ede/source.el (ede-source-match):
2854 * ede/project-am.el (project-am-type-alist, project-add-file)
2855 (project-am-package-info):
2856 * ede/proj.el (ede-proj-target, project-new-target):
2857 * ede/proj-elisp.el (ede-proj-tweak-autoconf):
2858 * ede/proj-comp.el (ede-current-build-list):
2859 * ede/makefile-edit.el (makefile-move-to-macro):
2860 * ede/files.el (ede-toplevel-project-or-nil):
2861 * ede/cpp-root.el (initialize-instance):
2862 * ede/autoconf-edit.el (autoconf-find-last-macro)
2863 (autoconf-parameter-strip, autoconf-insert-new-macro):
2864 * semantic/wisent.el (wisent-lex-eoi):
2865 * semantic/util-modes.el (global-semantic-show-parser-state-mode)
2866 (semantic-show-parser-state-mode):
2867 * semantic/texi.el (semantic-texi-environment-regexp):
2868 * semantic/tag.el (semantic-tag-new-variable)
2869 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
2870 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
2871 (semantic--tag-deep-copy-tag-list)
2872 (semantic-tag-components-with-overlays-default):
2873 * semantic/symref.el (semantic-symref-find-text):
2874 * semantic/senator.el (senator-yank-tag)
2875 (senator-transpose-tags-up):
2876 * semantic/scope.el (semantic-analyze-scoped-tags-default)
2877 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
2878 * semantic/sb.el (semantic-sb-autoexpand-length):
2879 * semantic/lex.el (semantic-lex-comment-regex)
2880 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
2881 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
2882 * semantic/lex-spp.el
2883 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
2884 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
2885 * semantic/idle.el
2886 (semantic-idle-summary-current-symbol-info-brutish)
2887 (semantic-idle-summary-current-symbol-info-default):
2888 * semantic/grammar.el (semantic-grammar-recreate-package)
2889 (semantic--grammar-macro-compl-dict):
2890 * semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
2891 * semantic/format.el (semantic-format-tag-custom-list)
2892 (semantic-format-tag-canonical-name-default):
2893 * semantic/find.el (semantic-find-tag-by-overlay-in-region)
2894 (semantic-find-tags-for-completion)
2895 (semantic-find-tags-by-scope-protection-default)
2896 (semantic-deep-find-tags-for-completion):
2897 * semantic/edit.el
2898 (semantic-edits-incremental-reparse-failed-hook)
2899 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
2900 (semantic-edits-splice-remove, semantic-edits-splice-replace):
2901 * semantic/doc.el (semantic-documentation-comment-preceeding-tag):
2902 * semantic/dep.el (semantic-dependency-include-path):
2903 * semantic/db.el (semanticdb-default-find-index-class)
2904 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
2905 (semanticdb-project-roots):
2906 * semantic/db-find.el (semanticdb-implied-include-tags)
2907 (semanticdb-find-adebug-insert-scanned-tag-cons)
2908 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
2909 (semanticdb-brute-deep-find-tags-for-completion):
2910 * semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
2911 * semantic/ctxt.el (semantic-beginning-of-context-default)
2912 (semantic-end-of-context-default)
2913 (semantic-ctxt-current-function-default)
2914 (semantic-ctxt-scoped-types-default):
2915 * semantic/complete.el (semantic-complete-read-tag-engine)
2916 (semantic-complete-inline-tag-engine)
2917 (semantic-complete-inline-custom-type)
2918 (semantic-complete-read-tag-analyzer):
2919 * semantic/chart.el (semantic-chart-tags-by-class)
2920 (semantic-chart-database-size):
2921 * semantic/analyze.el (semantic-analyze-current-symbol)
2922 (semantic-analyze-current-context):
2923 * semantic/symref/list.el (semantic-symref)
2924 (semantic-symref-hide-buffer, semantic-symref-symbol):
2925 * semantic/symref/grep.el (semantic-symref-grep-use-template):
2926 * semantic/symref/filter.el (semantic-symref-hits-in-region):
2927 * semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
2928 * semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
2929 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
2930 (semantic-c-dereference-template):
2931 * semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
2932 (semantic--analyze-refs-full-lookup-with-parents)
2933 (semantic--analyze-refs-full-lookup-simple):
2934 * semantic/analyze/complete.el
2935 (semantic-analyze-possible-completions):
2936 * srecode/table.el (srecode-mode-table-new):
2937 * srecode/srt.el (srecode-read-variable-name):
2938 * srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
2939 * srecode/semantic.el (srecode-semantic-handle-:tag)
2940 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
2941 * srecode/map.el (srecode-current-map):
2942 * srecode/insert.el (srecode-insert)
2943 (srecode-insert-variable-secondname-handler, srecode-insert-method)
2944 (srecode-template-inserter-point-override)
2945 (srecode-insert-include-lookup):
2946 * srecode/getset.el (srecode-auto-choose-class):
2947 * srecode/extract.el (srecode-inserter-extract):
2948 * srecode/document.el
2949 (srecode-document-autocomment-return-last-alist)
2950 (srecode-document-autocomment-param-type-alist)
2951 (srecode-document-insert-function-comment)
2952 (srecode-document-insert-variable-one-line-comment)
2953 (srecode-document-function-name-comment):
2954 * srecode/dictionary.el (srecode-create-dictionary)
2955 (srecode-compound-toString):
2956 * srecode/compile.el (srecode-flush-active-templates):
2957 * srecode/args.el (srecode-semantic-handle-:blank):
2958 Doc/message fixes.
2959
29602009-10-01 Juanma Barranquero <lekktu@gmail.com>
2961
2962 * semantic/wisent/javat-wy.el
2963 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
2964
29652009-09-30 Juanma Barranquero <lekktu@gmail.com>
2966
2967 * srecode/expandproto.el: Fix provide statement.
2968
dd9af436
CY
29692009-09-30 Sascha Wilde <wilde@sha-bang.de>
2970
2971 * ede/srecode.el: Fix provide statement.
2972
29732009-09-30 Glenn Morris <rgm@gnu.org>
2974
2975 * ede/proj.el (ede-proj-target-makefile-miscelaneous):
2976 * ede/proj-aux.el (ede-aux-source):
2977 * ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
2978 (ede-misc-source):
2979 * semantic/mru-bookmark.el (semantic-mrub-completing-read)
2980 (semantic-mrub-switch-tags): Fix doc typos.
2981
2982 * semantic/db-global.el (data-debug-new-buffer)
2983 (data-debug-insert-thing): Remove unneeded declarations (one broken).
2984 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
2985
2986 * semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
2987
2988 * semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
2989 use of CL function `remove-if-not'.
2990
29912009-09-29 Glenn Morris <rgm@gnu.org>
2992
2993 * semantic/symref/idutils.el:
2994 * semantic/symref/list.el: Relicense under GPLv3+.
2995
2996 * ede/srecode.el (srecode-resolve-arguments): Fix declaration.
2997
2998 * semantic/complete.el (semantic-displayor-focus-abstract-child-p):
2999 * semantic/tag-file.el (semanticdb-table-child-p):
3000 * srecode/compile.el (srecode-template-inserter-newline-child-p):
3001 Mark declarations not understood by check-declare.
3002
30032009-09-28 Eric Ludlam <zappo@gnu.org>
3004
3005 CEDET (development tools) package merged.
3006
3007 * *.el:
3008 * ede/*.el:
3009 * semantic/*.el:
3010 * srecode/*.el: New files.
3011
30122009-09-28 Eric Ludlam <zappo@gnu.org>
3013
dd9af436
CY
3014 * cedet-cscope.el:
3015 * cedet-files.el:
3016 * cedet-global.el:
3017 * cedet-idutils.el:
3018 * data-debug.el:
3019 * inversion.el:
3020 * mode-local.el:
3021 * pulse.el: New files.
5df4f04c
GM
3022
3023;; Local Variables:
3024;; coding: utf-8
3025;; End:
3026
ba318903 3027 Copyright (C) 2009-2014 Free Software Foundation, Inc.
5df4f04c
GM
3028
3029 This file is part of GNU Emacs.
3030
3031 GNU Emacs is free software: you can redistribute it and/or modify
3032 it under the terms of the GNU General Public License as published by
3033 the Free Software Foundation, either version 3 of the License, or
3034 (at your option) any later version.
3035
3036 GNU Emacs is distributed in the hope that it will be useful,
3037 but WITHOUT ANY WARRANTY; without even the implied warranty of
3038 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3039 GNU General Public License for more details.
3040
3041 You should have received a copy of the GNU General Public License
3042 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.