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