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