* lisp/cus-dep.el (custom-make-dependencies): Add a fallback method
[bpt/emacs.git] / lisp / cedet / ChangeLog
CommitLineData
bf8154b1
GM
12013-05-14 Glenn Morris <rgm@gnu.org>
2
3 * ede/simple.el, semantic/java.el: Set generated-autoload-load-name.
4
99fb2756
GM
52013-05-11 Glenn Morris <rgm@gnu.org>
6
6b91f903
GM
7 * ede/project-am.el, semantic/db-ebrowse.el, semantic/grammar.el:
8 * semantic/sb.el, semantic/bovine/grammar.el, semantic/wisent/comp.el:
9 * semantic/wisent/grammar.el, semantic/wisent/wisent.el:
10 * srecode/fields.el: Set generated-autoload-load-name (for cus-load).
11
f20def1f
GM
12 * ede/locate.el (cedet-cscope-version-check)
13 (cedet-cscope-support-for-directory):
14 * semantic/grammar.el (semantic-grammar-wy--install-parser):
15 Fix declarations.
16
99fb2756
GM
17 * ede/project-am.el (project-am-compile-project-command): Fix :type.
18
a931698a
GM
192013-05-09 Glenn Morris <rgm@gnu.org>
20
21 * semantic/db-find.el (semanticdb-find-throttle-custom-list):
22 Fix value.
23
201dbb58
DE
242013-04-27 David Engster <deng@randomsample.de>
25
26 * semantic/complete.el
27 (semantic-collector-calculate-completions-raw): If
28 `completionslist' is not set, refresh the cache if necessary and
29 use it for completions. This fixes the
30 `semantic-collector-buffer-deep' collector (bug#14265).
31
08bb5ee2
LL
322013-03-26 Leo Liu <sdl.web@gmail.com>
33
34 * semantic/senator.el (senator-copy-tag-to-register): Move
35 register handling logic from register.el. (Bug#14052)
36
e8cc7880
DE
372013-03-21 Eric Ludlam <zappo@gnu.org>
38
39 * semantic.el (navigate-menu): Yank Tag :enable. Make sure
40 `senator-tag-ring' is bound.
41 (semantic-parse-region-default): Stop reversing the output of
42 parse-whole-stream.
43 (semantic-repeat-parse-whole-stream): Append returned tags
44 differently, so they come out in the right order.
45
46 * semantic/sb.el (semantic-sb-filter-tags-of-class): New option.
47 (semantic-sb-fetch-tag-table): Filter tags being bucketed to
48 exclude tags belonging to above filtered classes.
49
50 * semantic/find.el (semantic-filter-tags-by-class): New function.
51
52 * semantic/tag-ls.el (semantic-tag-similar-p-default): Add
53 short-circuit in case tag1 and 2 are identical.
54
55 * semantic/analyze/fcn.el
56 (semantic-analyze-dereference-metatype-stack): Use
57 `semantic-tag-similar-p' instead of 'eq' when comparing two tags
58 during metatype evaluation in case they are the same, but not the
59 same node. (Tweaked patch from Tomasz Gajewski) (Tiny change)
60
61 * semantic/db-find.el (semanticdb-partial-synchronize): Fix
62 require to semantic/db-typecache to be correct.
63 (semanticdb-find-tags-external-children-of-type): Make this a
64 brutish search by default.
65
66 * semantic/sort.el
67 (semantic-tag-external-member-children-default): When calling
68 `semanticdb-find-tags-external-children-of-type', pass in the
69 input tag as the place to start searching for externally defined
70 methods.
71
72 * semantic/db-file.el (semanticdb-default-save-directory): Doc
73 fix: Add ref to default value.
74
75 * semantic/complete.el (semantic-complete-post-command-hook): When
76 detecting if cursor is outside completion area, do so if cursor
77 moves before start of overlay, or the original starting location
78 of the overlay (i.e., if user deletes past beginning of the
79 overlay region).
80 (semantic-complete-inline-tag-engine): Initialize original start
81 of `semantic-complete-inline-overlay'.
82
83 * semantic/bovine/c.el (semantic-c-describe-environment): Update
84 some section titles. Test semanticdb table before printing it.
85 (semantic-c-reset-preprocessor-symbol-map): Update
86 `semantic-lex-spp-macro-symbol-obarray' outside the loop over all
87 the files contributing to its value.
88 (semantic-c-describe-environment): If there is an EDE project but
89 no spp symbols from it, say so.
90
91 * srecode/args.el (srecode-semantic-handle-:project): New argument
92 handler. Provide variable values if not in an EDE project.
93
94 * srecode/srt-mode.el (srecode-template-mode): Fix typo on srecode
95 name.
96
97 * srecode/cpp.el (srecode-semantic-handle-:c): Replace all
98 characters in FILENAME_SYMBOL that aren't valid CPP symbol chars.
99
100 * srecode/map.el (srecode-map-validate-file-for-mode): Force
101 semantic to load if it is not active in the template being added
102 to the map.
103
104 * srecode/srt.el: Add local variables for setting the autoload
105 file name.
106 (srecode-semantic-handle-:srt): New autoload cookie
107
108 * ede.el (ede-apply-preprocessor-map): Apply map to
109 `semantic-lex-spp-project-macro-symbol-obarray' instead of the
110 system one. Add require for semantic.
111
112 * ede/proj-elisp.el (ede-update-version-in-source): In case a file
113 has both a version variable and a Version: comment, always use
114 `call-next-method'.
115
116 * ede/cpp-root.el (ede-set-project-variables): Deleted.
117 `ede-preprocessor-map' does the job this function was attempting
118 to do with :spp-table.
119 (ede-preprocessor-map): Update file tests to provide better
120 messages. Do not try to get symbols from a file that is the file
121 in the current buffer.
122
123 * ede/base.el (ede-project-placeholder): Add more documentation to
124 :file slot.
125 (ede-load-cache): Use `insert-file-contents' instead of
126 `find-file-noselect' in order to avoid activating other tools.
127
1282013-03-21 David Engster <deng@randomsample.de>
129
130 * semantic/bovine/c.el (semantic-get-local-variables): Also add a
131 new variable 'this' if we are in an inline member function. For
132 detecting this, we check overlays at point if there is a class
133 spanning the current function. Also, the variable 'this' has to
134 be a pointer.
135
136 * semantic/bovine/gcc.el (semantic-gcc-setup): Fail gracefully
137 when querying g++ for defines returns an error.
138
139 * srecode/srt-mode.el:
140 * srecode/compile.el:
141 * semantic/elp.el:
142 * semantic/db-el.el:
143 * semantic/complete.el:
144 * ede.el:
145 * cogre.el:
146 * srecode/table.el:
147 * srecode/mode.el:
148 * srecode/insert.el:
149 * srecode/compile.el:
150 * semantic/decorate/include.el:
151 * semantic/db.el:
152 * semantic/adebug.el:
153 * ede/auto.el:
154 * srecode/dictionary.el:
155 * semantic/ede-grammar.el:
156 * semantic/db.el:
157 * semantic/db-find.el:
158 * semantic/db-file.el:
159 * semantic/complete.el:
160 * semantic/bovine/c.el:
161 * semantic/analyze.el:
162 * ede/util.el:
163 * ede/proj.el:
164 * ede/proj-elisp.el:
165 * ede/pconf.el:
166 * ede/locate.el:
167 * ede.el: Adapt to EIEIO namespace cleanup: Rename `object-name'
168 to `eieio-object-name', `object-set-name-string' to
169 `eieio-object-set-name-string', `object-class' to
170 `eieio-object-class', `class-parent' to `eieio-class-parent',
171 `class-parents' to `eieio-class-parents', `class-children' to
172 `eieio-class-children', `object-name-string' to
173 `eieio-object-name-string', `object-class-fast' to
174 `eieio--object-class'. Also replace direct access with new
175 accessor functions.
176
1772013-03-21 Tomasz Gajewski <tomga@wp.pl> (tiny change)
178
179 * ede/cpp-root.el (ede-project-autoload, initialize-instance): Fix
180 EDE file symbol to match rename. Fix ede-cpp-root symbol to
181 include -project in name.
182
1832013-03-21 Alex Ott <alexott@gmail.com>
184
185 * cedet-files.el (cedet-files-list-recursively): New. Recursively
186 find files whose names are matching to given regex
187
188 * ede.el (ede-current-project): Rewrite to avoid imperative style.
189
190 * ede/files.el (ede-find-file): Simplify code.
191
192 * ede/base.el (ede-normalize-file/directory): Add function to
193 normalize :file or :directory slots if they are missing.
194
195 * ede/cpp-root.el (ede-cpp-root-project): Add compile-command
196 slot.
197 (project-compile-project): Compiles project using value specified
198 in :compule-command slot or in compile-command local variable.
199 Value of slot or local variable could be string or function that
200 receives project and should return string that will be invoked as
201 command.
202 (project-compile-target): Invokes compilation of whole project
203
204 * ede/files.el (ede-find-project-root): New function to
205 find root of project that contains specific file.
206 (ede-files-find-existing): New function which checks presence of
207 given directory in the list of registered projects.
208
f5572543
PE
2092013-03-04 Paul Eggert <eggert@cs.ucla.edu>
210
39004030
PE
211 * semantic/wisent/wisent.el (wisent): Stick to ASCII in the ASCII art.
212
f5572543
PE
213 * semantic/wisent/javat-wy.el: Regenerate.
214
020423c2
SM
2152012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
216
217 * semantic/fw.el (semantic-make-local-hook, semantic-mode-line-update):
218 Simplify via CSE.
219
96e05507 2202012-11-16 David Engster <deng@randomsample.de>
22b762c7 221
020423c2
SM
222 * semantic/symref/list.el (semantic-symref-symbol):
223 Use `semantic-complete-read-tag-project' instead of
22b762c7
DE
224 `semantic-complete-read-tag-buffer-deep', since the latter is not
225 working correctly.
226
020423c2
SM
227 * semantic/symref.el (semantic-symref-result-get-tags):
228 Use `find-buffer-visiting' to follow symbolic links.
22b762c7
DE
229
230 * semantic/fw.el (semantic-find-file-noselect): Always set
231 `enable-local-variables' to `:safe' when loading files.
232
96e05507 2332012-11-16 Glenn Morris <rgm@gnu.org>
7b1bf173
GM
234
235 * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
236 * semantic/util.el (semantic-describe-buffer):
237 * semantic/bovine/c.el (semantic-c-parse-lexical-token)
238 (semantic-default-c-setup):
239 Use new names for hooks rather than obsolete aliases.
240
f78ee6af 2412012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
237b5653
SM
242
243 * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
244 * semantic/grammar.el (semantic-grammar-mode):
245 * semantic/util-modes.el (semantic-highlight-edits-mode)
246 (semantic-show-parser-state-mode): Avoid obsolete name
247 semantic-edits-new-change-hooks (bug#12869).
248
f78ee6af 2492012-11-13 Glenn Morris <rgm@gnu.org>
418b1830
GM
250
251 * srecode/srt-mode.el (srecode-template-mode):
252 Don't change global values of comment-start, comment-end. (Bug#12781)
253
3f2a848d
DE
2542012-10-25 David Engster <deng@randomsample.de>
255
237b5653
SM
256 * semantic/analyze.el (semantic-analyze-dereference-alias):
257 New function to dereference aliases.
3f2a848d
DE
258 (semantic-analyze-current-context-default): Use it.
259
260 * semantic/grammar.el (semantic-grammar-create-package):
261 * srecode/compile.el (srecode-compile-templates): Throw a proper
262 error if semantic-mode is not enabled (bug#9968).
263
264 Compiler warning fixes:
265
266 * semantic.el (semantic-elapsed-time): Make it a defsubst.
267
237b5653
SM
268 * srecode/dictionary.el (srecode-adebug-dictionary):
269 Remove require for `semantic'.
3f2a848d
DE
270
271 * srecode/map.el:
272 * srecode/insert.el: Declare functions from `data-debug'.
273
274 * semantic/grammar.el: Require `help-fns'. Declare functions from
275 `eldoc', which is required in function body.
276
277 * srecode/java.el:
278 * semantic/texi.el:
279 * semantic/grammar-wy.el:
280 * semantic/db-file.el:
281 * semantic/db-el.el:
282 * semantic/chart.el: Fix requires.
283
284 * ede/locate.el: Remove useless requires. Declare functions
285 instead and require in functions when needed.
286
d1069532
SM
2872012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
288
289 * semantic/db-file.el (semanticdb-save-database-functions):
290 * semantic/lex.el (semantic-lex-reset-functions):
291 * semantic/edit.el (semantic-change-functions)
292 (semantic-edits-new-change-functions)
293 (semantic-edits-delete-change-functions)
294 (semantic-edits-reparse-change-functions): Don't use "-hooks" suffix.
295
bf659b3f
DE
2962012-10-14 David Engster <deng@randomsample.de>
297
d1069532
SM
298 * semantic.el (semantic-error-if-unparsed): New function.
299 Raise error if buffer was not parsed by Semantic (bug #12045).
bf659b3f
DE
300 (navigate-menu, edit-menu, cedet-menu-map): Enable Semantic items
301 only if buffer was parsed. Also, replace ':active' with ':enable'
302 where necessary.
303
304 * semantic/wisent/python.el
d1069532
SM
305 (semantic-python-get-system-include-path):
306 Use `python-shell-internal-send-string' if available to query Python
bf659b3f
DE
307 for system paths.
308
0b4eec47 309 * semantic/senator.el (senator-next-tag, senator-previous-tag)
bf659b3f
DE
310 (senator-go-to-up-reference): Use `semantic-error-if-unparsed'.
311
0b4eec47
DE
312 * semantic/complete.el (semantic-complete-jump-local)
313 (semantic-complete-jump, semantic-complete-jump-local-members)
bf659b3f
DE
314 (semantic-complete-self-insert): Use `semantic-error-if-unparsed'.
315 (semantic-complete-inline-project): Fix autoload cookie.
316
317 * semantic/analyze/complete.el
318 (semantic-analyze-possible-completions): Check if buffer was
319 parsed. Only raise an error if function was called interactively,
320 otherwise silently return nil.
321
322 * cedet.el (cedet-menu-map): Fix copy&paste typo in menu creation.
323
0b4eec47 3242012-10-08 David Engster <deng@randomsample.de>
caec1ef5
DE
325
326 * semantic/bovine/el.el: Add `semantic-default-elisp-setup' to
327 `emacs-lisp-mode-hook'. This was accidentally removed during the
328 CEDET update (2012-10-01T18:10:29Z!cyd@gnu.org).
329
740877cd
DE
3302012-10-07 David Engster <deng@randomsample.de>
331
332 * semantic/wisent/python.el (semantic-ctxt-current-function)
333 (semantic-ctxt-current-assignment): New overrides, simply
334 returning nil. The defaults do not work correctly and can send
e499e607 335 the parser in an infinite loop (bug#12458).
31e4cc2a
DE
336
337 * semantic/ede-grammar.el (project-compile-target): Fix grammar
338 compilation after introduction of %provide statement.
339
9322b306
DE
340 * semantic.el (semantic-new-buffer-setup-functions): Remove setup
341 function for `f90-mode', since the parser only exists upstream.
342
d1a1c7e6
GM
3432012-10-06 Glenn Morris <rgm@gnu.org>
344
345 * semantic/complete.el (semantic-displayor-tooltip-max-tags): Doc fix.
346
347 * semantic/complete.el (semantic-displayor-tooltip-mode)
348 (semantic-displayor-tooltip-initial-max-tags)
349 (semantic-displayor-tooltip-max-tags): Add missing custom :version tags.
350 * ede/linux.el (project-linux): Add missing group :version tag.
351
9414dd8d
CY
3522012-10-06 Chong Yidong <cyd@gnu.org>
353
354 * semantic/bovine/grammar.el:
d1069532
SM
355 * semantic/wisent/grammar.el: Move from admin/grammars.
356 Add autoloads for bovine-grammar-mode and wisent-grammar-mode.
9414dd8d 357
fd795bf4
CY
3582012-10-02 Chong Yidong <cyd@gnu.org>
359
360 * srecode.el, ede.el: Restore Version header.
361
62a81506
CY
3622012-10-01 Chong Yidong <cyd@gnu.org>
363
364 * semantic/bovine/c-by.el: Regenerate.
365 * semantic/bovine/make-by.el:
366 * semantic/bovine/scm-by.el:
367 * semantic/grammar-wy.el:
368 * semantic/wisent/javat-wy.el:
369 * semantic/wisent/js-wy.el:
370 * srecode/srt-wy.el:
371
3722012-10-01 Eric Ludlam <zappo@gnu.org>
373
374 * cedet.el (cedet-version, cedet-packages): Update.
375
376 * cedet-global.el (cedet-gnu-global-version-check): Support newer
377 versions that have extra (parens) in the version string.
378
379 * cedet-idutils.el (cedet-idutils-version-check): Make sure a
380 version number was found before calling inversion-check-version.
381
382 * data-debug.el (data-debug-insert-thing): Bind inhibit-read-only
383 while inserting the thing, then clear modified bit.
384 (data-debug-map): Suppress the keymap.
385 (data-debug-mode, data-debug-new-buffer): Make buffer read-only.
386 (data-debug-contract-current-line): Inhibit read-only, then clear
387 modified bit.
388
389 * ede.el (ede-buffer-belongs-to-project-p): Use ede-object-project
390 to allow use in more kinds of buffers.
391 (ede-project-forms-menu): Add `Default configuration' menu item.
392 (ede-configuration-forms-menu): New, for use in above.
393 (ede-project-configurations-set): New command used from menu.
394 (ede-java-classpath): New conveninece for Java support.
395 (ede-apply-object-keymap): Combine keybindings from the project
396 and the target, not just whatever is local to the buffer.
397 (ede-apply-target-options): Call fcn to apply project local
398 variables.
399 (ede-reset-all-buffers): Remove arg.
400 (ede, ede-rescan-toplevel): Callers changed.
401 (ede-new-target): Fix bug where you couldn't call this from Dired.
402 (ede-add-file): Replace assignment of ede-object with generic call
403 to re-init the buffer.
404 (ede-find-target): If ede-object is set, run short-cut code
405 instead of `or' shortcut.
406 (ede-project-buffers): Return buffers belonging to input project,
407 not any buffer belonging to any project.
408 (ede-system-include-path, ede-apply-project-local-variables)
409 (ede-set-project-local-variable): New functions.
410 (ede-make-project-local-variable): Apply to toplevel if none
411 specified.
412 (ede-set): Make it interactive.
413
414 * ede/auto.el (ede-project-autoload): New class.
415 (ede-do-dirmatch): New method.
416 (ede-project-dirmatch-p): New function.
417 (ede-project-root-directory): Call it.
418 (ede-dir-to-projectfile): Don't call project file function if we
419 didn't match the root.
420 (ede-project-root-directory): Don't call a project's root function
421 if the tool in question isn't installed.
422 (ede-dir-to-projectfile): Don't call project file function if we
423 didn't match the root.
424
425 * ede/autoconf-edit.el (autoconf-parameter-strip): Remove any
426 trailing `\' mid string, and replace with a space.
427 (autoconf-parameter-count): New function.
428 (autoconf-set-version): Use it.
429
430 * ede/base.el (ede-project): The :type of targets is now a list of
431 target base classes.
432
433 * ede/emacs.el (ede-emacs-load): Fix typo.
434
435 * ede/files.el (ede-flush-project-hash, ede-flush-directory-hash):
436 Protect against missing locator object.
437 (ede-get-locator-object): Protect against missing project.
438 (ede-flush-directory-hash): New command.
439 (ede-get-locator-object): Protect against missing project.
440
441 * ede/generic.el (ede-generic-config): Add configurable
442 `run-command' slot.
443 (project-compile-project, project-compile-target)
444 (project-debug-target, project-run-target): New methods.
445 (ede-generic-get-configuration): Specify the class to load.
446 (ede-generic-new-autoloader): Use ede-add-project-autoload.
447 (ede-enable-generic-projects): Rename projects so as to never
448 match the edeproject-* projects.
449
450 * ede/makefile-edit.el (makefile-macro-file-list): Case sensitive
451 searches. Protect against "SUBDIRS=$(subdirs)" infloop.
452
453 * ede/proj-elisp.el (ede-proj-tweak-autoconf)
454 (ede-proj-flush-autoconf): Disable local variables when loading
455 the autoconf lisp compile script.
456
457 * ede/proj.el (ede-proj-target-aux, -elisp, -elisp-autoloads)
458 (-scheme, -makefile-misc, ede-proj-target-makefile-program)
459 (-makefile-archive, -makefile-shared-object)
460 (ede-proj-target-makefile-info, -grammar): New autoloads.
d1069532
SM
461 (ede-proj-project): Inherit from eieio-persistent-read.
462 Specify extension and header line.
62a81506
CY
463 (ede-proj-load, ede-proj-save): Replace with impl using
464 eieio-persistent-read.
465
466 * ede/project-am.el (project-add-file): Use ede-target-parent
467 instead of loading the project file.
468
469 * semantic.el (semantic-version): Update.
470 (semantic-new-buffer-setup-functions): Add f90-mode, texinfo-mode.
471 (navigate-menu): Add menu item for Stickyfunc mode.
472
473 * semantic/analyze/debug.el
d1069532
SM
474 (semantic-analyzer-debug-insert-include-summary):
475 Before dereferencing tableinner, make sure it has a value.
62a81506
CY
476
477 * semantic/analyze/refs.el
478 (semantic-analyze-tag-references-default): When doing a lookup,
479 specify noerror.
480 (semantic--analyze-refs-full-lookup): Add optional noerror input
481 argument. Pass to to full-lookup-simple.
d1069532
SM
482 (semantic-analyze-refs-impl, semantic-analyze-refs-proto):
483 Ignore :typemodifiers during compare.
62a81506
CY
484
485 * semantic/bovine/c.el (semantic-lex-cpp-define): Specify limits
486 to looking back for comment chars.
487 (semantic--tag-similar-names-p, semantic--tag-similar-names-p-default)
488 (semantic--tag-attribute-similar-p): New.
489 (semantic-c-describe-environment): Handle list value of ede-object.
d1069532
SM
490 (semantic-lex-c-preprocessor-symbol-map-builtin):
491 Add __attribute_pure__.
62a81506 492
d1069532
SM
493 * semantic/bovine/scm.el (semantic-format-tag-prototype):
494 Add parent and color argument. Pass them through.
62a81506
CY
495
496 * semantic/complete.el (semantic-collector-calculate-completions):
497 Search for more matches if new prefix is a substring of old one.
498 (semantic-complete-inline-project): New function.
499
500 * semantic/db-el.el (object-print): New method.
501
502 * semantic/db-file.el (semanticdb-load-database): Specify class.
503
504 * semantic/db-typecache.el
505 (semanticdb-abstract-table::semanticdb-typecache-find-method):
506 Allow proxied tags to be resolved during the search.
507 (semanticdb-typecache-complete-flush): Support missing or empty
508 pointmax slot, to allow for more database types.
509
510 * semantic/db.el (semanticdb-abstract-table): Add db-refs slot.
511 (object-print): Allow child classes to overwrite the display of
512 the (%d tags) extra string.
513 (semanticdb-project-database): Specify :type for table.
514 (semanticdb-create-table-for-file): Specify file-truename.
d1069532
SM
515 (semanticdb-synchronize, semanticdb-partial-synchronize):
516 Restore code that refreshes references to include files.
62a81506
CY
517
518 * semantic/decorate/include.el
519 (semantic-decoration-on-fileless-includes): New face.
520 (semantic-decoration-on-fileless-include-map)
521 (semantic-decoration-on-fileless-include-menu): New variables.
d1069532
SM
522 (semantic-decoration-on-includes-highlight-default):
523 Support includes that have a table, but are not associated with a file.
62a81506
CY
524 (semantic-decoration-fileless-include-describe)
525 (semantic-decoration-fileless-include-menu): New functions.
526 (semantic-decoration-all-include-summary): Add arrows to indicate
527 the file associated with an include name.
528
529 * semantic/find.el
530 (semantic-find-tags-by-scope-protection-default): Also filter on
531 package protection of the slot.
532
533 * semantic/java.el (semantic-java-expand-tag): If some type has a
534 fully qualified name, bust it up into one package and the type
535 with a short name.
536
537 * semantic/lex.el (define-lex-block-analyzer): Protect against
538 random extra close parenthesis.
539
540 * semantic/symref.el (semantic-symref-result-get-tags): Make sure
541 the cursor is on the matched name.
542
543 * semantic/symref/list.el (semantic-symref-results-mode-map):
544 Suppress keymap.
545
546 * semantic/tag-ls.el (semantic--tag-similar-names-p)
547 (semantic--tag-attribute-similar-p)
548 (semantic--tag-similar-types-p): New functions.
549 (semantic-tag-similar-ignorable-attributes): New variable.
550 (semantic-tag-protection-default): Add package concept to return
551 value.
552 (semantic-tag-package-protected-p): New function.
553 (semantic-tag-full-package): New overload method.
554 (semantic-tag-full-package-default): New default for above.
555 (semantic-tag-full-name-default): Look for the full package name.
556
557 * semantic/tag.el (semantic-create-tag-proxy)
558 (semantic-tag-set-proxy, semantic-tag-resolve-proxy): New.
559
d1069532
SM
560 * semantic/util.el (semantic-describe-buffer):
561 Add semantic-new-buffer-fcn-was-run.
62a81506 562
d1069532
SM
563 * semantic/wisent/java-tags.el (semantic-get-local-variables):
564 Add `this' to the local variable context.
62a81506
CY
565 (semantic-analyze-split-name, semantic-analyze-unsplit-name): New.
566
d1069532
SM
567 * semantic/wisent/python.el (semantic-python-expand-tag):
568 New function.
62a81506
CY
569
570 * srecode/compile.el (srecode-compile-templates): Add "framework"
571 special variable support.
572 (srecode-compile-template-table): Support framework specifier.
573
574 * srecode/cpp.el (srecode-semantic-handle-:c)
575 (srecode-semantic-handle-:cpp): New functions.
576 (srecode-semantic-apply-tag-to-dict): Move from cpp-mode function
577 to c-mode function.
d1069532 578 (srecode-c-apply-templates): Rename from srecode-cpp-apply-templates.
62a81506
CY
579
580 * srecode/dictionary.el (initialize-instance): Remove bogus error
581 condition.
582 (srecode-create-section-dictionary): Remove unused function.
583
584 * srecode/java.el (srecode-semantic-handle-:java): Fix filename as
585 package variable. Add current_package variable.
586
587 * srecode/map.el (srecode-map-update-map): Specify the class.
588
589 * srecode/mode.el (srecode-minor-mode): Support the m3 menu.
590
d1069532
SM
591 * srecode/semantic.el (srecode-semantic-insert-tag):
592 Support system includes.
62a81506
CY
593
594 * srecode/srt-mode.el (srecode-font-lock-keywords): Update.
595
596 * srecode/table.el (srecode-template-table): Add :framework slot.
597 (srecode-dump): Dump it.
598 (srecode-mode-table): Add new modetables slot.
599 (srecode-get-mode-table): Find the mode, but also find all parent
600 modes, and merge the tables together in :tables from :modetables.
601 (srecode-make-mode-table): Init :modetables
602 (srecode-mode-table-find): Search in modetables.
603 (srecode-mode-table-new): Merge the differet files into the
604 modetables slot.
605
6062012-10-01 David Engster <deng@randomsample.de>
607
608 * ede.el (ede-apply-preprocessor-map): Check that
609 `semantic-lex-spp-macro-symbol-obarray' is non-nil.
610 (global-ede-mode): Fix call to `ede-reset-all-buffers'.
611
612 * ede/cpp-root.el (ede-preprocessor-map): Make sure we add the
613 lexical-table even when the table doesn't need to be refreshed.
614
615 * ede/dired.el (ede-dired-minor-mode): Use called-interactively-p.
616
617 * ede/pmake.el (ede-pmake-insert-variable-once): Wrap in
618 save-excursion.
619
620 * ede/proj-comp.el (ede-proj-makefile-insert-rules): Fix insertion
621 of phony rule.
622
d1069532
SM
623 * ede/proj-elisp.el (ede-proj-target-elisp):
624 Remove ede-emacs-preload-compiler.
62a81506
CY
625 (ede-proj-makefile-insert-rules, ede-proj-makefile-dependencies):
626 New methods.
627 (ede-emacs-compiler): Add 'require' macro to variables and pattern
628 rule. Add .elc object extension.
629 (ede-proj-elisp-packages-to-loadpath): Allow longer relative names.
630 (ede-proj-makefile-insert-variables): Do not insert preload items.
631 (ede-proj-target-elisp-autoloads): Don't depend on cedet-autogen.
632
633 * ede/util.el (ede-make-buffer-writable):
634 * semantic/debug.el (semantic-debug-mode): Set buffer-read-only
635 instead of calling toggle-read-only.
636
637 * semantic.el (semantic-fetch-tags): Use progress reporter only
638 when called interactively.
639 (semantic-submode-list): Add debugging modes.
640 (semantic-mode): Remove Semantic from after-change-functions.
641 Delete the cache, call semantic--tag-unlink-cache-from-buffer, and
642 set semantic-new-buffer-fcn-was-run to nil.
643
644 * semantic/analyze/fcn.el (semantic-analyze-tag-prototype-p)
645 (semantic-analyze-tag-prototype-p-default): Remove.
646 (semantic-analyze-type, semantic-analyze-dereference-metatype-1):
647 Use semantic-tag-prototype-p.
648
649 * semantic/bovine/c.el (semantic-c-reset-preprocessor-symbol-map):
650 Ensure semantic-mode is on before getting preprocessor symbols.
651 (semantic-c-skip-conditional-section): Use c-scan-conditionals.
652 (semantic-c-convert-spp-value-to-hideif-value)
653 (semantic-c-evaluate-symbol-for-hideif, semantic-c-hideif-lookup)
654 (semantic-c-hideif-defined): Revive hideif code from CEDET trunk.
655 (semantic-lex-c-if, semantic-c-do-lex-ifdef): Revert changes for
656 regular expression parsing.
657 (semantic-cpp-lexer): Add semantic-lex-c-ifdef.
658 (semantic-expand-c-tag): Check if tag is non-nil before adding it
659 to return list
d1069532
SM
660 (semantic-expand-c-extern-C, semantic-expand-c-complex-type):
661 New functions, copied from semantic-expand-c-tag.
62a81506
CY
662 (semantic-find-tags-included): New override which also searches
663 for include tags inside of namespaces.
664 (semantic-c-dereference-typedef): Use semantic-tag-prototype-p.
665 (semanticdb-find-table-for-include): New override.
666
667 * semantic/bovine/el.el: Remove emacs-lisp-mode-hook.
668
d1069532
SM
669 * semantic/complete.el (semantic-complete-post-command-hook):
670 Exit completion when user has deleted all characters from the prefix.
62a81506
CY
671 (semantic-displayor-focus-request): Return to previous window when
672 focussing tags.
673
674 * semantic/db-el.el (semanticdb-normalize-one-tag): Make obsolete.
675 (semanticdb-elisp-sym->tag): Use help-function-arglist instead.
676
d1069532
SM
677 * semantic/db-file.el (semanticdb-create-database):
678 Use semantic-tag-version instead of just semantic-version as the
62a81506
CY
679 initializer for the :semantic-tag-version slot.
680
681 * semantic/db-find.el (semanticdb-find-tags-by-class-method):
682 Delegate `include' to semantic-find-tags-included, which by
683 default will just call semantic-find-tags-by-class.
684
685 * semantic/db.el (semanticdb-refresh-table): Do not print warnings
686 when calling semantic-find-file-noselect. This avoids the "file
687 is write protected" messages when parsing system header files,
688 which might easily be mistaken to mean the currently loaded file.
689 (semanticdb-save-current-db, semanticdb-save-all-db): Only emit
690 message when running interactively.
691
d1069532
SM
692 * semantic/decorate/mode.el (semantic-decoration-mode):
693 Activate decoration of includes by default.
62a81506 694
d1069532
SM
695 * semantic/doc.el (semantic-doc-snarf-comment-for-tag):
696 Remove comment delimiter at the end of the text.
62a81506
CY
697
698 * semantic/ede-grammar.el (semantic-ede-proj-target-grammar):
699 Change aux- and pre-load-packages.
700 (ede-proj-makefile-dependencies): Update pattern rule so that
701 resulting parsers are also byte-compiled.
702 (semantic-ede-grammar-compiler-bovine)
703 (semantic-ede-source-grammar-wisent): Remove .elc from gargage
704 pattern, since this is already covered by the elisp compiler.
705 (project-compile-target): Add compatibility code for Emacs 23,
706 which does not have `byte-recompile-file'.
707 (ede-proj-makefile-insert-rules): Add target specific EMACSFLAGS
708 to raise max-specpdl-size and max-lisp-eval-depth.
709
d1069532
SM
710 * semantic/find.el (semantic-find-tags-included):
711 Make overridable.
62a81506
CY
712
713 * semantic/fw.el (semantic-alias-obsolete)
714 (semantic-varalias-obsolete): Use byte-compile-warn.
715 (semantic-find-file-noselect): Disable font lock by calling
716 global-font-lock-mode.
717
d1069532
SM
718 * semantic/grammar.el (semantic-grammar-create-package):
719 Fix message.
62a81506
CY
720 (semantic-grammar-batch-build-one-package): When generating
721 parsers in batch-mode, ignore version control and make sure we do
722 not use cached versions.
723
724 * semantic/ia.el (semantic-ia-complete-symbol-menu): Bring back.
725
726 * semantic/lex-spp.el (semantic-lex-spp-symbol-merge): New fun.
727 (semantic-lex-spp-token-macro-to-macro-stream): Use it.
728 (semantic-lex-spp-lex-text-string): Instead of only setting the
729 lexer, call the major mode's setup function.
730
d1069532
SM
731 * semantic/scope.el (semantic-analyze-scoped-types-default):
732 Use semantic-tag-prototype-p.
62a81506
CY
733 (semantic-analyze-scope-nested-tags-default): Make sure we don't
734 return tags we already have in scopetypes.
735
736 * semantic/symref/filter.el
737 (semantic-symref-test-count-hits-in-tag): Restore.
738
d1069532
SM
739 * semantic/wisent/comp.el (wisent-BITS-PER-WORD):
740 Use most-positive-fixnum if available.
62a81506
CY
741
742 * semantic/wisent/javascript.el (semantic-tag-protection)
743 (semantic-analyze-scope-calculate-access)
744 (semantic-ctxt-current-symbol): New overrides.
745
746 * semantic/wisent/python.el (wisent-python-lex-beginning-of-line):
747 Rewrite to fix byte-compiler warning.
748
7492012-10-01 Robert Jarzmik <robert.jarzmik@free.fr>
750
751 * ede/linux.el (project-linux): New group.
752 (project-linux-compile-target-command)
753 (project-linux-compile-project-command): New options.
754 (project-compile-project, project-compiler-target): New methods.
755
756 * inversion.el (inversion-decoders): New regexps for SXEmacs.
757 (inversion-package-version): More verbose error message.
758 (inversion-<): Deal with new special cases.
759 (inversion-require-emacs): New argument sxemacs-ver; use it.
760
7612012-10-01 Nelson Ferreira <nelson.ferreira@ieee.org>
762
763 * ede/emacs.el (ede-emacs-version): Detect SXEmacs.
764
7652012-10-01 William Xu <william.xwl@gmail.com>
766
767 * semantic/bovine/gcc.el (semantic-gcc-query): Returns status when
768 there is an error.
769 (semantic-gcc-setup): If the first attempt at calling cpp fails,
770 try straight GCC.
771
7722012-10-01 Jan Moringen <jan.moringen@uni-bielefeld.de>
773
774 * semantic/idle.el
d1069532
SM
775 (semantic-idle-breadcrumbs--display-in-header-line):
776 Escape %-characters to avoid erroneous expansion in header line.
62a81506
CY
777 (semantic-idle-breadcrumbs--display-in-mode-line): Likewise.
778
779 * semantic/wisent/python.el (wisent-python-reconstitute-function-tag)
780 (wisent-python-reconstitute-class-tag, semantic-python-special-p)
781 (semantic-python-private-p, semantic-python-instance-variable-p)
782 (semantic-python-docstring-p): New functions.
783
784 * srecode/find.el (srecode-user-template-p): New function.
785 (srecode-all-template-hash): Accept new optional argument
786 predicate; return only templates matching the predicate.
787 (srecode-read-template-name): Only retrieve templates matching
788 srecode-user-template-p.
789
790 * srecode/insert.el (srecode-insert-show-error-report)
791 (srecode-insert-report-error): New functions.
792 (srecode-insert-variable-secondname-handler)
793 (srecode-insert-method, srecode-insert-ask-default)
794 (srecode-insert-variable-secondname-handler)
795 (srecode-insert-subtemplate, srecode-insert-method-helper)
796 (srecode-insert-include-lookup): Use them.
797
7982012-10-01 Thomas Bach <thbach@students.uni-mainz.de>
799
800 * semantic/wisent/python.el
801 (semantic-python-get-system-include-path): Add Python3k support.
802
8032012-10-01 Alexander Haeckel <_@_> (tiny change)
804
805 * srecode/getset.el (srecode-query-for-field): Return the first
806 tag found by name from all children tags.
807
8082012-10-01 Dale Sedivec <dale@codefu.org>
809
810 * semantic/wisent/python.el (wisent-python-string-start-re)
811 (wisent-python-string-re, wisent-python-forward-string)
d1069532
SM
812 (wisent-python-forward-line,wisent-python-lex-string):
813 New variables.
62a81506
CY
814 (wisent-python-forward-balanced-expression): New function.
815
8162012-10-01 Pete Beardmore <elbeardmorez@msn.com>
817
818 * semantic/complete.el (semantic-collector-calculate-completions):
819 Search for additional matches if new prefix is a substring of the
820 old prefix.
821 (semantic-displayor-next-action): Immediately show more
822 completions after user presses TAB the first time.
823 (semantic-displayor-tooltip-mode)
824 (semantic-displayor-tooltip-initial-max-tags)
825 (semantic-displayor-tooltip-max-tags): New defcustoms.
d1069532
SM
826 (semantic-displayor-tooltip): Use new variables as initforms.
827 Use new slot `mode' instead of `force-show'. Rename `max-tags' to
62a81506
CY
828 `max-tags-initial'.
829 (semantic-displayor-show-request): Display completions according
830 to new modes, and make variable names clearer.
831 (semantic-displayor-tooltip::semantic-displayor-scroll-request):
832 Use new max-tags-initial slot.
833
d1069532
SM
834 * semantic/idle.el (semantic-idle-local-symbol-highlight):
835 Make sure there actually is a tag at point.
62a81506
CY
836 (semantic-idle-completion-list-default): Report errors as messages
837 if semantic-idle-scheduler-verbose-flag is non-nil.
838
8392012-10-01 Richard Kim <emacs18@gmail.com>
840
841 * semantic/db-global.el (semanticdb-enable-gnu-global-databases):
842 Add optional NOERROR argument.
843
8442012-10-01 Alex Ott <alexott@gmail.com>
845
d1069532
SM
846 * semantic/idle.el (semantic-idle-scheduler-enabled-p):
847 Fix file-checking.
62a81506
CY
848
8492012-10-01 Darren Hoo <darren.hoo@gmail.com> (tiny change)
850
d1069532
SM
851 * semantic/db-find.el (semanticdb-find-default-throttle):
852 Make buffer-local.
62a81506
CY
853 (semanticdb-strip-find-results): Check for existing :filename
854 attribute, so that file information from GNU Global is not lost.
855
651eaf36
AS
8562012-08-07 Andreas Schwab <schwab@linux-m68k.org>
857
858 * ede/base.el (ede-with-projectfile): Use backquote forms.
859
1cd64625
PE
8602012-07-29 Paul Eggert <eggert@cs.ucla.edu>
861
862 inaccessable -> inaccessible spelling fix (Bug#10052)
863 * semantic/wisent/comp.el (wisent-inaccessible-symbols):
864 Rename from wisent-inaccessable-symbols, fixing a misspelling.
865 Caller changed.
866
b33da87c
AS
8672012-07-09 Andreas Schwab <schwab@linux-m68k.org>
868
869 * ede/project-am.el: Fix typo.
870
c4444d16
PE
8712012-07-09 Paul Eggert <eggert@cs.ucla.edu>
872
873 Rename configure.in to configure.ac (Bug#11603).
874 * ede/autoconf-edit.el (autoconf-find-query-for-program)
875 (autoconf-new-program):
876 * ede/emacs.el (ede-emacs-version):
877 * ede/proj.el (ede-proj-setup-buildenvironment):
878 * ede/project-am.el (project-am-autoconf-file-options):
879 Prefer configure.ac to configure.in.
880
41bf0c48
DE
8812012-03-12 David Engster <deng@randomsample.de>
882
883 * semantic/db-find.el
884 (semanticdb-find-translate-path-brutish-default): If we don't yet
885 have a proper table for PATH, use `semanticdb-current-database'
886 instead (bug #10343).
887
da418981
DE
8882012-03-11 David Engster <deng@randomsample.de>
889
890 * semantic/wisent/javascript.el (js-mode): Define `js-mode' as
891 child-mode of `javascript-mode' (bug #8445).
892
44e97401
GM
8932012-02-28 Glenn Morris <rgm@gnu.org>
894
895 * semantic/db.el (semanticdb-search-results-table):
896 Doc fix (standardize possessive apostrophe usage).
897
af8556d2
JB
8982012-02-09 Juanma Barranquero <lekktu@gmail.com>
899
900 * ede/auto.el (ede-directory-safe-p, ede-add-project-to-global-list):
901 Add declarations.
902
c6ddbd68
DE
9032012-01-29 David Engster <deng@randomsample.de>
904
905 Fix require error when using srecode-insert (Bug#9967).
906 * srecode/insert.el: Require srecode/filters.
907 * srecode/filters.el: Drop two requires.
908
a62d5ee1
EL
9092012-01-09 Eric Ludlam <zappo@gnu.org>
910
911 * ede.el (ede-project-directories): New option.
912 (ede-directory-safe-p): Check it.
913 (ede-initialize-state-current-buffer, ede, ede-new)
914 (ede-check-project-directory, ede-rescan-toplevel)
915 (ede-load-project-file, ede-parent-project, ede-current-project):
916 (ede-target-parent): Avoid loading in a project unless it is safe,
917 since it may involve malicious code. This security flaw was
918 pointed out by Hiroshi Oota.
919
920 * ede/auto.el (ede-project-autoload): Add safe-p slot.
921 (ede-project-class-files): Projects using Project.ede are unsafe.
922 (ede-auto-load-project): New method.
923
924 * ede/simple.el (ede-project-class-files): Mark as unsafe.
925
9954ec0d
SS
9262011-12-19 Sam Steingold <sds@gnu.org>
927
928 * semantic/edit.el (semantic-edits-incremental-parser): Add the
929 autoload cookie, necessary for JDEE.
930
a98edce9
JB
9312011-12-06 Juanma Barranquero <lekktu@gmail.com>
932
933 * semantic/bovine/c.el (semantic-tag-abstract-p): Fix typo.
934
78adbf9c
CY
9352011-11-26 Chong Yidong <cyd@gnu.org>
936
937 * semantic/wisent/python-wy.el:
938 * semantic/wisent/js-wy.el:
939 * semantic/wisent/javat-wy.el:
940 * semantic/bovine/c-by.el:
941 * semantic/grammar-wy.el: Regenerate.
942
20db1522
JB
9432011-11-24 Juanma Barranquero <lekktu@gmail.com>
944
945 * semantic/lex-spp.el (semantic-lex-spp-first-token-arg-list): Fix typo.
946
cd1181db
JB
9472011-11-20 Juanma Barranquero <lekktu@gmail.com>
948
949 * cedet-cscope.el (cedet-cscope-version-check):
950 * cedet-global.el (cedet-global-min-version)
951 (cedet-gnu-global-version-check):
952 * cedet.el (cedet-version):
953 * data-debug.el (data-debug-prev, data-debug-contract-current-line):
954 * ede.el (ede-buffer-belongs-to-project-p, ede-auto-add-to-target)
955 (ede-new, ede-invoke-method, project-edit-file-target, project-rescan)
956 (ede-add-project-to-global-list, ede-map-all-subprojects):
957 * inversion.el (inversion-check-version):
958 * mode-local.el (mode-local-map-file-buffers, define-child-mode)
959 (define-overloadable-function):
960 * pulse.el (pulse-flag, pulse):
961 * semantic.el (semantic-elapsed-time, semantic-parse-region)
962 (navigate-menu):
963 * ede/proj-comp.el (ede-compilation-program):
964 * semantic/debug.el (semantic-debug-parser-go)
965 (semantic-debug-parser-fail, semantic-debug-parser-quit)
966 (semantic-debug-parser-abort):
967 * semantic/idle.el (semantic-idle-core-handler):
968 * semantic/bovine/debug.el (semantic-bovine-debug-error-frame):
969 Fix typos.
970
58179cce
JB
9712011-11-16 Juanma Barranquero <lekktu@gmail.com>
972
973 * semantic/lex.el (semantic-lex-tokens):
974 * semantic/tag-ls.el (semantic-tag-protected-p):
975 * srecode/mode.el (srecode-prefix-map): Fix typos.
976
0d26e0b6
JB
9772011-11-15 Juanma Barranquero <lekktu@gmail.com>
978
979 * ede/project-am.el (project-compile-target-command): Fix typo.
980
0b381c7e
JB
9812011-11-14 Juanma Barranquero <lekktu@gmail.com>
982
983 * ede/auto.el (ede-project-autoload):
984 * ede/proj-comp.el (ede-makefile-rule):
985 * semantic/analyze.el (semantic-analyze-current-context):
986 * semantic/ctxt.el (semantic-get-local-variables):
987 * semantic/tag-ls.el (semantic-tag-calculate-parent): Fix typos.
988
07a79ce4
DE
9892011-11-03 David Engster <dengste@eml.cc>
990
991 * srecode.el:
992 * srecode/texi.el:
993 * srecode/template.el:
994 * srecode/java.el:
995 * srecode/insert.el:
996 * srecode/document.el:
997 * srecode/dictionary.el:
998 * srecode/compile.el:
999 * semantic/wisent/java-tags.el:
1000 * semantic/texi.el:
1001 * semantic/sort.el:
1002 * semantic/lex-spp.el:
1003 * semantic/idle.el:
1004 * semantic/html.el:
1005 * semantic/db-typecache.el:
1006 * semantic/analyze/complete.el:
1007 * ede/generic.el:
1008 * ede/custom.el:
1009 * ede/cpp-root.el:
1010 * ede/base.el: Fix filenames in comments and headers.
1011
1012 * semantic/db-find.el:
1013 * srecode/insert.el (srecode-insert-include-lookup):
1014 * ede/proj-comp.el (ede-compilation-program): Fix it's -> its in
1015 comments and docstrings.
1016
1017 * semantic/ctxt.el (semantic-end-of-context-default):
1018 * semantic/find.el (semantic-find-tags-by-scope-protection):
1019 * semantic/java.el (semantic-documentation-for-tag): Fix typos in
1020 docstrings.
1021
1022 * semantic/db.el (semanticdb-table, semanticdb-abstract-cache)
1023 (semanticdb-abstract-db-cache):
1024 * semantic/decorate/include.el
1025 (semantic-decoration-unknown-include-describe): Fix filenames in
1026 docstring.
1027
1028 * semantic/ede-grammar.el (semantic-ede-grammar-compiler-wisent):
1029 (semantic-ede-grammar-compiler-bovine): Fix requires that are
1030 added to the grammar-make-script.
1031
86c60681
CY
10322011-10-23 Chong Yidong <cyd@gnu.org>
1033
1034 * ede.el (ede-maybe-checkout): Function deleted;
1035 vc-toggle-read-only does not do version control now.
1036
1037 * ede/util.el (ede-make-buffer-writable): Don't use
1038 vc-toggle-read-only.
1039
1040 * ede/project-am.el (project-remove-file, project-add-file)
1041 (project-new-target): Don't call ede-maybe-checkout.
1042
ac6c8639
CY
10432011-10-19 Chong Yidong <cyd@gnu.org>
1044
1045 * ede.el (ede-minor-mode,global-ede-mode):
1046 * semantic.el (semantic-mode): Doc fix to reflect new
1047 define-minor-mode calling behavior.
1048
b4010ade
CY
10492011-07-30 Chong Yidong <cyd@stupidchicken.com>
1050
af8556d2
JB
1051 * semantic/grammar.el (semantic-grammar-insert-defanalyzers):
1052 Fix require.
b4010ade 1053
60c55439
DH
10542011-07-04 Darren Hoo <darren.hoo@gmail.com> (tiny change)
1055
1056 * semantic/db.el (semanticdb-file-table-object): Don't bug out on
1057 unconfigured projects if `global-ede-mode' is on (bug#8092).
1058
98768aeb
PE
10592011-07-01 Paul Eggert <eggert@cs.ucla.edu>
1060
1061 * semantic.el (semantic-elapsed-time): Rewrite using
1062 time-subtract and float-time.
1063
4f306b0f
GM
10642011-05-11 Glenn Morris <rgm@gnu.org>
1065
1066 * semantic/wisent/javascript.el (semantic-get-local-variables):
1067 Use define-mode-local-override rather than its obsolete alias.
1068
79b70037
GM
10692011-05-10 Jim Meyering <meyering@redhat.com>
1070
1071 Fix doubled-word typos.
1072 * ede/pmake.el (ede-proj-makefile-garbage-patterns): the the -> the
1073 * semantic/complete.el (semantic-complete-read-tag-local-members):
1074 Likewise.
1075 * ede.el (ede-auto-add-method): then then -> then
1076
4ffd0d6b 10772011-04-23 Juanma Barranquero <lekktu@gmail.com>
7ee6a1d3
JB
1078
1079 * ede/pconf.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1080 * ede/proj-comp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1081 * ede/proj-elisp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf)
1082 (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
1083 * ede/proj-scheme.el (ede-proj-tweak-autoconf): Fix typos in docstrings.
1084
33383987
JB
10852011-03-07 Chong Yidong <cyd@stupidchicken.com>
1086
1087 * Version 23.3 released.
1088
cb9336bd
SM
10892011-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
1090
1091 * semantic/wisent/comp.el (wisent-byte-compile-grammar):
1092 Macroexpand before passing to byte-compile-form.
1093
4d789d84
SM
10942011-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1095
1096 * srecode/srt-mode.el (srecode-template-mode): Use define-derived-mode.
1097 * semantic/symref/list.el (semantic-symref-results-mode):
1098 Use run-mode-hooks.
1099
df26e1f5
GM
11002010-11-12 Glenn Morris <rgm@gnu.org>
1101
1102 * semantic/wisent/comp.el: Remove unnecessary eval-when-compiles.
1103
72bc50c0
GM
11042010-11-10 Glenn Morris <rgm@gnu.org>
1105
1106 * semantic/bovine/c.el: Test system-type with memq.
1107
9b026d9f
GM
11082010-11-09 Glenn Morris <rgm@gnu.org>
1109
1110 * semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
1111 * semantic/grammar.el (semantic-grammar-epilogue):
1112 * ede/speedbar.el (ede-find-nearest-file-line):
1113 * ede/pmake.el (ede-proj-makefile-insert-dist-rules):
1114 * ede/autoconf-edit.el (autoconf-delete-parameter):
1115 Use point-at-bol and point-at-eol.
1116
e180ab9f
GM
11172010-11-07 Glenn Morris <rgm@gnu.org>
1118
1119 * ede/proj-elisp.el (ede-proj-flush-autoconf): Use point-at-bol.
1120
9a1a272a
GM
11212010-11-01 Glenn Morris <rgm@gnu.org>
1122
ca7c89d8
GM
1123 * semantic/bovine/c.el (semantic-analyze-split-name): Move before use.
1124
9a1a272a
GM
1125 * semantic/symref/cscope.el (ede-toplevel):
1126 * semantic/symref.el (ede-toplevel):
1127 * semantic/tag-file.el (ede-toplevel):
1128 * ede.el (ede-toplevel): Fix declarations.
1129
fd8d481e
GM
11302010-10-31 Glenn Morris <rgm@gnu.org>
1131
39a766fb 1132 * ede/proj-elisp.el (project-compile-target): Fix previous change.
fd8d481e
GM
1133 * semantic/ede-grammar.el (project-compile-target): Fix previous change.
1134
11352010-10-31 Julien Danjou <julien@danjou.info>
1136
1137 * ede/proj-elisp.el (project-compile-target):
1138 * semantic/ede-grammar.el (project-compile-target):
1139 Use `byte-recompile-file'.
1140
2699a554 11412010-10-31 Glenn Morris <rgm@gnu.org>
d2ce10d2
GM
1142
1143 * mode-local.el (mode-local-augment-function-help):
1144 * semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons):
1145 * semantic/symref/list.el (semantic-symref-results-dump)
1146 (semantic-symref-rb-toggle-expand-tag): Replace inappropriate uses
1147 of toggle-read-only.
1148
5d2e9377
CY
11492010-09-30 Chong Yidong <cyd@stupidchicken.com>
1150
1151 * semantic/bovine/el.el:
1152 * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode):
1153 Fix require statements.
1154
ac73b1fa
CY
11552010-09-29 Chong Yidong <cyd@stupidchicken.com>
1156
1157 * semantic/tag.el (semantic-tag-version): Bump to 2.0.
1158
1159 * semantic/db-typecache.el (semanticdb-typecache-find-default):
1160 * semantic/imenu.el (semantic-create-imenu-index):
1161 * semantic/grammar.el (semantic--grammar-macro-function-tag):
4d789d84
SM
1162 * semantic/fw.el (semanticdb-without-unloaded-file-searches):
1163 Fix require. Suggested by David Engster.
ac73b1fa
CY
1164
1165 * semantic/bovine/c-by.el: Regenerate.
1166
11672010-09-29 Eric Ludlam <zappo@gnu.org>
1168
1169 * semantic/lex-spp.el (semantic-lex-spp-debug-symbol): New var.
1170 (semantic-lex-spp-enable-debug-symbol): New command
1171 (semantic-lex-spp-value-valid-p)
1172 (semantic-lex-spp-validate-value): New functions
1173 (semantic-lex-spp-symbol-set)
1174 (semantic-lex-spp-symbol-push): Add call to validate value.
1175 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
1176 invalid values during save, just save a nil.
1177
b93e37e5
CY
11782010-09-25 Chong Yidong <cyd@stupidchicken.com>
1179
1180 * ede/linux.el (ede-project-class-files):
1181 * ede/generic.el (ede-generic-new-autoloader):
1182 * ede/emacs.el (ede-project-class-files):
1183 * ede/simple.el (ede-project-class-files):
1184 * ede/cpp-root.el (ede-project-class-files): Fix require name.
1185
40b1a3a9
JB
11862010-09-25 Juanma Barranquero <lekktu@gmail.com>
1187
1188 * semantic/lex.el (semantic-ignore-comments): Doc fix.
1189
1190 * semantic/symref/list.el (semantic-symref-list-rename-open-hits):
1191 Fix typo in error message.
1192 (semantic-symref-list-map-open-hits): Fix typo in docstring.
1193
b9749554
EL
11942010-09-21 Eric Ludlam <zappo@gnu.org>
1195
1196 Synch SRecode to CEDET 1.0.
1197
1198 * pulse.el (pulse-momentary-highlight-overlay): If pulse-flag is
1199 'never, disable all pulsing.
1200
1201 * cedet.el (cedet-version):
1202 * srecode.el (srecode-version): Bump version to 1.0.
1203
1204 * srecode/texi.el (srecode-texi-insert-tag-as-doc): New function.
1205 (semantic-insert-foreign-tag): Use it.
1206
4d789d84
SM
1207 * srecode/mode.el (srecode-bind-insert):
1208 Call srecode-load-tables-for-mode.
b9749554
EL
1209 (srecode-minor-mode-templates-menu): Do not list templates that
1210 are not in the current project.
1211 (srecode-menu-bar): Add binding for srecode-macro-help.
1212
1213 * srecode/table.el (srecode-template-table): Add :project slot.
1214 (srecode-dump): Dump it.
1215
1216 * srecode/map.el (srecode-map-update-map): Make map loading more
1217 robust.
1218
1219 * srecode/insert.el (srecode-insert-fcn): Merge template
1220 dictionary before resolving arguments.
1221 (srecode-insert-method-helper): Add error checking to make sure
1222 that we only have dictionaries.
1223 (srecode-insert-method): Check template nesting depth when using
1224 point inserter override.
1225 (srecode-insert-method): Install override with depth limit.
1226
1227 * srecode/getset.el (srecode-insert-getset): Force tag table
1228 update. Don't query the class if it is empty.
1229
1230 * srecode/find.el (srecode-template-get-table)
1231 (srecode-template-get-table-for-binding)
1232 (srecode-all-template-hash): Skip if not in current project.
1233 (srecode-template-table-in-project-p): New method.
1234
1235 * srecode/fields.el (srecode-fields-exit-confirmation): New option.
1236 (srecode-field-exit-ask): Use it.
1237
1238 * srecode/dictionary.el (srecode-dictionary-add-template-table):
1239 Do not add variables in tables not for the current project.
1240 (srecode-compound-toString): Handle cases where the default value
1241 is another compound value.
1242 (srecode-dictionary-lookup-name): New optional argument
1243 NON-RECURSIVE, which inhibits visiting dictionary parents.
1244 (srecode-dictionary-add-section-dictionary)
1245 (srecode-dictionary-merge): New optional argument FORCE adds
1246 values even if an identically named entry exists.
1247 (srecode-dictionary-add-entries): New method.
1248 (srecode-create-dictionaries-from-tags): New function.
1249
1250 * srecode/cpp.el (srecode-cpp): New defgroup.
1251 (srecode-cpp-namespaces): New option.
1252 (srecode-semantic-handle-:using-namespaces)
1253 (srecode-cpp-apply-templates): New functions.
1254 (srecode-semantic-apply-tag-to-dict): Handle template parameters
1255 by calling `srecode-cpp-apply-templates'.
1256
1257 * srecode/compile.el (srecode-compile-templates): Fix directory
1258 compare of built-in templates. Give built-ins lower piority.
1259 Support special variable "project".
1260 (srecode-compile-template-table): Set :project slot of new tables.
4d789d84
SM
1261 (srecode-compile-one-template-tag):
1262 Use srecode-create-dictionaries-from-tags.
b9749554 1263
cb85c0d8
EL
12642010-09-21 Eric Ludlam <zappo@gnu.org>
1265
1266 Synch EDE to CEDET 1.0.
1267
1268 * cedet-idutils.el (cedet-idutils-make-command): New option.
1269 (cedet-idutils-mkid-call):
1270 (cedet-idutils-create/update-database): New functions.
1271
1272 * cedet-cscope.el (cedet-cscope-create):
1273 (cedet-cscope-create/update-database): New functions.
1274 (cedet-cscope-support-for-directory): Make interactive.
1275
1276 * cedet-global.el (cedet-global-gtags-command): New option.
1277 (cedet-gnu-global-gtags-call)
1278 (cedet-gnu-global-create/update-database): New functions.
1279
1280 * ede.el (ede-save-cache): Fix recentf-exclude expression.
1281 (ede-make-dist): Always use toplevel project.
1282 (ede-buffer-object): If we fail to find an object in the current
1283 project, loop upward looking for a match. If no target is found,
1284 use most local project.
1285 (ede-buffer-belongs-to-target-p)
1286 (ede-buffer-belongs-to-project-p): New functions.
1287 (ede-initialize-state-current-buffer): New function.
1288 (ede-target-forms-menu, ede-project-buffers): Use them.
1289 (ede-minor-mode, ede-reset-all-buffers): Use it.
1290 (project-interactive-select-target, project-add-file): Don't use
1291 ede-project-force-load.
1292 (ede-buffer-object): New arg PROJSYM.
1293 (ede-minor-mode): Remove ede-directory-project-p test.
1294 (ede-initialize-state-current-buffer): Don't test for
1295 ede-directory-project-p if there is a matching open project.
1296 (ede-customize-forms-menu): Prevent error if there is no project.
1297 (ede-load-project-file): Set ede-constructing to the thing being
1298 constructed, instead of t.
d1069532 1299 (ede-project-force-load): Delete.
cb85c0d8
EL
1300
1301 * ede/base.el:
1302 * ede/auto.el:
1303 * ede/custom.el: New files.
1304
1305 * ede/autoconf-edit.el (autoconf-find-last-macro)
1306 (autoconf-parameters-for-macro): Parse multiline parameters of
1307 macros. Optionally ignore case and at bol for macro.
1308 (autoconf-parameter-strip): Use greedy match for newlines.
d1069532 1309 (autoconf-new-automake-string): Delete.
cb85c0d8
EL
1310 (autoconf-new-program): Use SRecode to fill an empty file.
1311
4d789d84
SM
1312 * ede/cpp-root.el (ede-create-lots-of-projects-under-dir):
1313 New function.
cb85c0d8
EL
1314
1315 * ede/files.el (ede-flush-project-hash): New command.
1316 (ede-convert-path): Add optional PROJECT arg.
1317 (ede-directory-project-p): Obey ".ede-ignore".
1318 (ede-expand-filename-local)
1319 (ede-expand-filename-impl-via-subproj): New methods.
1320 (ede-expand-filename-impl): Use them.
1321 (ede-project-root, ede-project-root-directory): Move to
1322 ede/auto.el.
1323
1324 * ede/locate.el (ede-locate-flush-hash):
1325 (ede-locate-create/update-root-database): New methods.
1326 (initialize-instance): Use ede-locate-flush-hash.
1327
1328 * ede/pmake.el (ede-proj-makefile-insert-variables): If this is
1329 the top project and not a metasubproject, set TOP to CURDIR.
1330 (ede-proj-makefile-insert-variables): Output a target's object
1331 list whether or not the vars are already in the Makefile.
1332 (ede-pmake-insert-variable-once): New macro.
1333
4d789d84
SM
1334 * ede/project-am.el (project-am-with-makefile-current):
1335 Add recentf-exclude.
cb85c0d8
EL
1336 (project-am-load-makefile): Obey an optional suggested name.
1337 (project-am-expand-subdirlist): New function.
1338 (project-am-makefile::project-rescan): Use it. Combine SUBDIRS
1339 and DIST_SUBDIRS.
1340 (project-am-meta-type-alist): A list to scan better Makefile.am
1341 (project-am-scan-for-targets): Scan also over
1342 project-am-meta-type-alist.
1343 (ede-system-include-path): Simple implementation.
d1069532 1344 (ede-find-target): Delete. EDE core takes care of this.
cb85c0d8
EL
1345 (ede-buffer-mine): Create the searched filename as relative.
1346 (project-am-load): Simplify, using autoconf-edit.
1347 (project-am-extract-package-info): Fix separators.
1348
1349 * ede/proj.el (project-run-target): New method.
4d789d84
SM
1350 (project-make-dist, project-compile-project):
1351 Use ede-proj-automake-p to determine which kind of compile to use.
cb85c0d8
EL
1352 (project-rescan): Call ede-load-project-file.
1353 (ede-buffer-mine): Add more file names that belong to the project.
1354 (ede-proj-compilers): Improve error message.
1355
1356 * ede/proj-obj.el (ede-ld-linker): Use the LDDEPS variable.
1357 (ede-source-c++): Add more C++ extensions.
4d789d84
SM
1358 (ede-proj-target-makefile-objectcode): Quote initforms.
1359 Support lex and yacc.
cb85c0d8 1360
d1069532 1361 * ede/proj-prog.el (ede-proj-makefile-insert-rules): Remove.
cb85c0d8
EL
1362 (ede-proj-makefile-insert-variables): New, add LDDEPS.
1363 (ede-proj-makefile-insert-automake-post-variables): Add LDADD
1364 variable. Use ldlibs-local slot. Add a -l to ldlibs strings.
1365 (ede-proj-target-makefile-program): Swap order of two slots so
1366 they show up in the same order as in the command line.
1367 (ede-proj-target-makefile-program): Add ldlibs-local slot.
1368
4d789d84
SM
1369 * ede/proj-shared.el (ede-g++-libtool-shared-compiler):
1370 Fix inference rule to use cpp files.
cb85c0d8
EL
1371 (ede-proj-target-makefile-shared-object): Quote initforms.
1372
1373 * ede/proj-misc.el (ede-proj-target-makefile-miscelaneous):
1374 * ede/proj-info.el (ede-proj-target-makefile-info):
1375 * ede/proj-aux.el (ede-proj-target-aux):
1376 * ede/proj-archive.el (ede-proj-target-makefile-archive):
1377 * ede/proj-elisp.el (ede-proj-target-elisp)
1378 (ede-proj-target-elisp-autoloads): Quote initforms.
1379
1380 * ede/srecode.el (ede-srecode-setup): Load autoconf templates.
1381
1382 * ede/shell.el (ede-shell-buffer): Fix buffer name.
1383
1384 * ede/pconf.el (ede-proj-configure-synchronize): If user events
1385 occur while waiting for the compile process to finish, pull them
1386 in and discard those events.
1387
dd9af436
CY
13882010-09-19 Eric Ludlam <zappo@gnu.org>
1389
1390 Synch Semantic to CEDET 1.0.
1391
1392 * semantic.el (semantic-version): Update to 2.0.
1393 (semantic-mode-map): Add "," and "m" bindings.
1394 (navigate-menu): Update.
1395
1396 * semantic/symref.el (semantic-symref-calculate-rootdir):
1397 New function.
1398 (semantic-symref-detect-symref-tool): Use it.
1399
1400 * semantic/symref/grep.el (semantic-symref-grep-shell): New var.
1401 (semantic-symref-perform-search): Use it. Calculate root dir with
1402 semantic-symref-calculate-rootdir.
1403 (semantic-symref-derive-find-filepatterns): Improve error message.
1404
1405 * semantic/symref/list.el
1406 (semantic-symref-results-mode-map): New bindings.
1407 (semantic-symref-auto-expand-results): New option.
1408 (semantic-symref-results-dump): Obey auto-expand.
1409 (semantic-symref-list-expand-all, semantic-symref-regexp)
1410 (semantic-symref-list-contract-all)
1411 (semantic-symref-list-map-open-hits)
1412 (semantic-symref-list-update-open-hits)
1413 (semantic-symref-list-create-macro-on-open-hit)
1414 (semantic-symref-list-call-macro-on-open-hits): New functions.
1415 (semantic-symref-list-menu-entries)
1416 (semantic-symref-list-menu): New vars.
1417 (semantic-symref-list-map-open-hits): Move cursor to beginning of
1418 match before calling the mapped function.
1419
1420 * semantic/doc.el
1421 (semantic-documentation-comment-preceeding-tag): Do nothing if the
1422 mode doesn't provide comment-start-skip.
1423
1424 * semantic/scope.el
1425 (semantic-analyze-scope-nested-tags-default): Strip duplicates.
1426 (semantic-analyze-scoped-inherited-tag-map): Take the tag we are
1427 looking for as part of the scoped tags list.
1428
4d789d84
SM
1429 * semantic/html.el (semantic-default-html-setup):
1430 Add senator-step-at-tag-classes.
dd9af436
CY
1431
1432 * semantic/decorate/include.el
1433 (semantic-decoration-on-unknown-includes): Change light bgcolor.
1434 (semantic-decoration-on-includes-highlight-default): Check that
0b381c7e 1435 the include tag has a position.
dd9af436
CY
1436
1437 * semantic/complete.el (semantic-collector-local-members):
1438 (semantic-complete-read-tag-local-members)
1439 (semantic-complete-jump-local-members): New class and functions.
1440 (semantic-complete-self-insert): Save excursion before completing.
1441
1442 * semantic/analyze/complete.el
1443 (semantic-analyze-possible-completions-default): If no completions
1444 are found, return the raw by-name-only completion list. Add FLAGS
1445 arguments. Add support for 'no-tc (type constraint) and
1446 'no-unique, or no stripping duplicates.
1447 (semantic-analyze-possible-completions-default): Add FLAGS arg.
1448
1449 * semantic/util-modes.el
1450 (semantic-stickyfunc-show-only-functions-p): New option.
1451 (semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
1452 the very first line in a buffer.
1453
1454 * semantic/util.el (semantic-hack-search)
1455 (semantic-recursive-find-nonterminal-by-name)
d1069532 1456 (semantic-current-tag-interactive): Delete.
4d789d84
SM
1457 (semantic-describe-buffer): Fix expand-nonterminal.
1458 Add lex-syntax-mods, type relation separator char, and command
dd9af436
CY
1459 separation char.
1460 (semantic-sanity-check): Only message if called interactively.
1461
1462 * semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
1463 :filename property and the tag position.
1464
1465 * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
1466 Add recursion limit.
1467
1468 * semantic/imenu.el (semantic-imenu-bucketize-type-members):
1469 Make this buffer local, not the obsoleted variable.
1470
1471 * semantic/idle.el: Add breadcrumbs support.
1472 (semantic-idle-summary-current-symbol-info-default)
1473 (semantic-idle-tag-highlight)
4d789d84
SM
1474 (semantic-idle-completion-list-default):
1475 Use semanticdb-without-unloaded-file-searches for speed, and to
dd9af436
CY
1476 conform to the controls that specify if the idle timer is supposed
1477 to be parsing unparsed includes.
1478 (semantic-idle-symbol-highlight-face)
1479 (semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
1480 Callers changed.
1481 (semantic-idle-work-parse-neighboring-files-flag): Default to nil.
1482 (semantic-idle-work-update-headers-flag): New var.
1483 (semantic-idle-work-for-one-buffer): Use it.
1484 (semantic-idle-local-symbol-highlight): Rename from
1485 semantic-idle-tag-highlight.
1486 (semantic-idle-truncate-long-summaries): New option.
1487
1488 * semantic/ia.el (semantic-ia-cache)
d1069532 1489 (semantic-ia-get-completions): Delete. Callers changed.
dd9af436
CY
1490 (semantic-ia-show-variants): New command.
1491 (semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
1492 (semantic-ia-show-summary): If there isn't anything to show, say so.
1493
1494 * semantic/grammar.el (semantic-grammar-create-package):
1495 Save the buffer even in batch mode.
1496
1497 * semantic/fw.el
1498 (semanticdb-without-unloaded-file-searches): New macro.
1499
1500 * semantic/dep.el (semantic-dependency-find-file-on-path):
1501 Fix case dereferencing ede-object when it is a list.
1502
1503 * semantic/db-typecache.el (semanticdb-expand-nested-tag)
1504 (semanticdb-typecache-faux-namespace): New functions.
1505 (semanticdb-typecache-file-tags)
1506 (semanticdb-typecache-merge-streams): Use them.
1507 (semanticdb-typecache-file-tags): When deriving tags from a file,
1508 give the mode a chance to monkey with the tag copy.
1509 (semanticdb-typecache-find-default): Wrap find in save-excursion.
1510 (semanticdb-typecache-find-by-name-helper): Merge found names down.
1511
1512 * semantic/db-global.el
1513 (semanticdb-enable-gnu-global-in-buffer): Don't show messages if
1514 GNU Global is not available and we don't want to throw an error.
1515
1516 * semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
1517 When trying to normalize the tag to a buffer, don't error if
1518 set-buffer method doesn't exist.
1519
1520 * semantic/db-file.el (semanticdb-save-db): Simplify msg.
1521
1522 * semantic/db.el (semanticdb-refresh-table): If forcing a
1523 refresh on a file not in a buffer, use semantic-find-file-noselect
1524 and delete the buffer after use.
1525 (semanticdb-current-database-list): When calculating root via
1526 hooks, force it through true-filename and skip the list of
1527 possible roots.
1528
1529 * semantic/ctxt.el (semantic-ctxt-imported-packages): New.
1530
1531 * semantic/analyze/debug.el
1532 (semantic-analyzer-debug-insert-tag): Reset standard output to
1533 current buffer.
1534 (semantic-analyzer-debug-global-symbol)
1535 (semantic-analyzer-debug-missing-innertype): Change "prefix" to
1536 "symbol" in messages.
1537
0b381c7e 1538 * semantic/analyze/refs.el (semantic-analyze-refs-impl)
dd9af436
CY
1539 (semantic-analyze-refs-proto): When calculating value, make sure
1540 the found tag is 'similar' to the originating tag.
1541 (semantic--analyze-refs-find-tags-with-parent): Attempt to
1542 identify matches via imported symbols of parents.
1543 (semantic--analyze-refs-full-lookup-with-parents): Do a deep
1544 search during the brute search.
1545
1546 * semantic/analyze.el
1547 (semantic-analyze-find-tag-sequence-default): Be robust to
1548 calculated scopes being nil.
1549
4d789d84
SM
1550 * semantic/bovine/c.el (semantic-c-describe-environment):
1551 Add project macro symbol array.
dd9af436
CY
1552 (semantic-c-parse-lexical-token): Add recursion limit.
1553 (semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
1554 New overrides.
1555 (semantic-expand-c-tag-namelist): Split a full type from a typedef
1556 out to its own tag.
1557 (semantic-expand-c-tag-namelist): Do not split out a typedef'd
1558 inline type if it is an anonymous type.
1559 (semantic-c-reconstitute-token): Use the optional initializers as
4d789d84
SM
1560 a clue that some function is probably a constructor.
1561 When defining the type of these constructors, split the parent name,
dd9af436
CY
1562 and use only the class part, if applicable.
1563
1564 * semantic/bovine/c-by.el:
1565 * semantic/wisent/python-wy.el: Regenerate.
1566
15672010-07-20 Juanma Barranquero <lekktu@gmail.com>
1568
1569 * semantic/db-file.el (object-write): Fix typo in docstring.
1570
15712010-06-03 Eric Ludlam <zappo@gnu.org>
1572
1573 * semantic/lex-spp.el
1574 (semantic-lex-spp-table-write-slot-value): Instead of erroring on
1575 invalid values during save, just save a nil (Bug#6324).
1576
15772010-05-31 Jonathan Marchand <jonathlela@gmail.com> (tiny change)
1578
1579 * ede/cpp-root.el (ede-set-project-variables): Fix feature name
1580 (bug#6231).
1581
266a86bd
CY
15822010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1583
1584 Use a mode-line spec rather than a static string in Semantic.
1585 * semantic/util-modes.el:
1586 (semantic-minor-modes-format): New var to replace...
1587 (semantic-minor-modes-status): Remove.
1588 (semantic-mode-line-update): Construct a mode-line spec rather than
1589 a static string so that mouse buttons can be used on individual minor
1590 modes and so that semantic-mode-line-update only needs to be called
1591 when global settings are changed.
1592 (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
1593 Call semantic-mode-line-update.
1594 (semantic-toggle-minor-mode-globally): Don't assume mode is on
1595 minor-mode-alist, check semantic-minor-mode-alist as well.
1596 (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
1597 (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
1598 (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
1599 * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
1600 * semantic/idle.el (semantic-idle-scheduler-mode)
1601 (define-semantic-idle-service, semantic-idle-summary-mode):
1602 * semantic/decorate/mode.el (semantic-decoration-mode):
1603 Don't call semantic-mode-line-update any more.
1604
16052010-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1606
1607 Use define-minor-mode in CEDET where applicable.
1608
1609 * srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
1610 Use define-minor-mode.
1611
1612 * semantic/util-modes.el (semantic-add-minor-mode):
1613 Remove unused arg `keymap' and code redundant with define-minor-mode.
1614 (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
1615 (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
1616 (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
1617 (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
1618 (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
1619 (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
1620 Use define-minor-mode.
1621 (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
1622 (semantic-show-unmatched-syntax-mode-setup)
1623 (semantic-show-parser-state-mode-setup)
1624 (semantic-highlight-func-mode-setup): Inline into sole caller.
1625
1626 * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
1627 (semantic-mru-bookmark-mode): Use define-minor-mode.
1628 (semantic-mru-bookmark-mode-setup): Inline into sole caller.
1629
1630 * semantic/idle.el (define-semantic-idle-service):
1631 Use define-minor-mode and inline setup function into its sole caller.
1632 (semantic-idle-scheduler-mode-setup)
1633 (semantic-idle-summary-mode-setup): Inline into sole caller.
1634 (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
1635 Use define-minor-mode.
1636
1637 * semantic/decorate/mode.el (global-semantic-decoration-mode)
1638 (semantic-decoration-mode): Use define-minor-mode.
1639 (semantic-decoration-mode-setup): Inline into sole caller.
1640
1641 * ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
1642 (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
1643 (ede-dired-add-to-target): Use dolist.
1644
266a86bd
CY
16452010-04-29 Chong Yidong <cyd@stupidchicken.com>
1646
1647 * semantic.el (semantic-completion-at-point-function):
1648 New function.
1649 (semantic-mode): Use semantic-completion-at-point-function for
1650 completion-at-point-functions instead.
1651
16522010-04-28 Chong Yidong <cyd@stupidchicken.com>
1653
1654 * semantic.el (semantic-mode): When enabled, add
1655 semantic-ia-complete-symbol to completion-at-point-functions.
1656
1657 * semantic/ia.el (semantic-ia-complete-symbol): Return nil
1658 if Semantic is not active.
1659
16602010-04-19 Chong Yidong <cyd@stupidchicken.com>
1661
1662 * ede/pmake.el (ede-proj-makefile-insert-variables):
1663 Don't destroy list before using it.
1664
dd9af436
CY
16652010-04-02 Juanma Barranquero <lekktu@gmail.com>
1666
1667 * semantic/imenu.el (semantic-imenu-bucketize-type-members)
1668 (semantic-create-imenu-directory-index): Fix typos in docstrings.
1669 (semantic-imenu-goto-function): Reflow docstring.
1670
16712010-03-24 Juanma Barranquero <lekktu@gmail.com>
1672
1673 * srecode/table.el (srecode-template-table): Fix docstring typo.
1674
266a86bd
CY
16752010-03-24 Glenn Morris <rgm@gnu.org>
1676
1677 * semantic/bovine/c.el (semantic-c-describe-environment):
1678 Consistently check ede-object is bound throughout.
1679
1680 * ede/project-am.el (ede-shell-run-something): Declare.
1681
dd9af436
CY
16822010-03-13 Eric M. Ludlam <zappo@gnu.org>
1683
1684 * semantic/imenu.el: New file, from the CEDET repository
1685 (Bug#5412).
1686
16872010-03-06 Glenn Morris <rgm@gnu.org>
1688
1689 * semantic/grammar.el (semantic-grammar-header-template):
1690 Update template copyright to GPLv3+.
1691
16922010-02-28 Chong Yidong <cyd@stupidchicken.com>
1693
1694 * semantic/db-find.el
1695 (semanticdb-find-translate-path-brutish-default):
4d789d84
SM
1696 * ede/make.el (ede-make-check-version):
1697 Use with-current-buffer instead of save-excursion.
dd9af436 1698
76e3243a
JB
16992010-02-24 Eduard Wiebe <usenet@pusto.de>
1700
1701 * semantic/wisent/javascript.el (wisent-javascript-jv-expand-tag):
1702 Avoid c(ad)ddr and use c(ad)r of cddr (Bug#5640).
1703
dd9af436
CY
17042010-02-16 Chong Yidong <cyd@stupidchicken.com>
1705
1706 * data-debug.el (data-debug): Move to extensions group.
1707
1708 * ede.el (ede):
1709 * srecode.el (srecode):
1710 * semantic.el (semantic): Put in tools and extensions group.
1711
17122010-02-14 Juanma Barranquero <lekktu@gmail.com>
1713
1714 * ede.el (ede-run-target, project-delete-target)
1715 (project-dist-files, ede-name, ede-documentation, ede-parent-project)
1716 (ede-adebug-project, ede-adebug-project-parent)
1717 (ede-adebug-project-root): Fix typos in docstrings.
1718
17192010-01-18 Juanma Barranquero <lekktu@gmail.com>
1720
1721 * ede/locate.el (ede-locate-file-in-project)
1722 (ede-locate-file-in-project-impl): Fix typos in docstrings.
1723 (ede-enable-locate-on-project): Fix typos in error messages.
1724
1725 * semantic/util-modes.el (semantic-unmatched-syntax-face)
1726 (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
1727 (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
1728 (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
1729 (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
1730 Fix typos in menu help.
1731
1732 * semantic.el (semantic-require-version, semantic--buffer-cache)
1733 (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
1734 (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
1735 (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
1736 (semantic-parse-stream, semantic-parse-region)
1737 (semantic-parse-region-default, semantic--set-buffer-cache)
1738 (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
1739 (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
1740 (semantic-default-submodes):
1741 * semantic/db-ebrowse.el (semanticdb-table-ebrowse)
1742 (semanticdb-create-ebrowse-database)
1743 (semanticdb-find-tags-for-completion-method)
1744 (semanticdb-find-tags-by-class-method)
1745 (semanticdb-deep-find-tags-by-name-method)
1746 (semanticdb-deep-find-tags-for-completion-method):
1747 * semantic/db-el.el (semanticdb-elisp-mapatom-collector)
1748 (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
1749 (semanticdb-find-tags-for-completion-method)
1750 (semanticdb-find-tags-by-class-method)
1751 (semanticdb-deep-find-tags-for-completion-method):
1752 * semantic/db-find.el (semanticdb-find-translate-path)
1753 (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
1754 (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
1755 (semanticdb-find-tags-by-name-method)
1756 (semanticdb-find-tags-by-name-regexp-method)
1757 (semanticdb-find-tags-for-completion-method)
1758 (semanticdb-find-tags-by-class-method)
1759 (semanticdb-find-tags-external-children-of-type-method)
1760 (semanticdb-find-tags-subclasses-of-type-method)
1761 (semanticdb-deep-find-tags-by-name-method)
1762 (semanticdb-deep-find-tags-by-name-regexp-method)
1763 (semanticdb-deep-find-tags-for-completion-method):
1764 * semantic/db-global.el (semanticdb-enable-gnu-global-hook)
1765 (semanticdb-enable-gnu-global-in-buffer)
1766 (semanticdb-find-tags-for-completion-method)
1767 (semanticdb-deep-find-tags-by-name-method)
1768 (semanticdb-deep-find-tags-for-completion-method):
1769 * semantic/db-javascript.el (semanticdb-javascript-tags)
1770 (javascript-mode, semanticdb-find-translate-path)
1771 (semanticdb-find-tags-for-completion-method)
1772 (semanticdb-find-tags-by-class-method)
1773 (semanticdb-deep-find-tags-by-name-method)
1774 (semanticdb-deep-find-tags-for-completion-method)
1775 (semanticdb-find-tags-external-children-of-type-method):
1776 * semantic/idle.el (semantic-idle-work-core-handler)
1777 (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
1778 (global-semantic-idle-scheduler-mode):
1779 * srecode/dictionary.el (srecode-field-value)
1780 (srecode-dictionary-add-section-dictionary):
1781 Fix typos in docstrings.
1782
17832010-01-17 Glenn Morris <rgm@gnu.org>
1784
1785 * semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
1786
17872010-01-17 Juanma Barranquero <lekktu@gmail.com>
1788
1789 * semantic.el (semantic-mode): Fix typos in docstrings.
1790
17912010-01-16 Mario Lang <mlang@delysid.org>
1792
1793 * ede/cpp-root.el (ede-cpp-root-project):
1794 * ede/files.el (ede-expand-filename):
1795 * ede/simple.el (ede-simple-project):
1796 * semantic/complete.el (semantic-complete-read-tag-engine)
1797 (semantic-complete-inline-tag-engine):
1798 * semantic/db-el.el (semanticdb-equivalent-mode):
1799 * semantic/db-global.el (semanticdb-equivalent-mode):
1800 * semantic/db-javascript.el (semanticdb-equivalent-mode):
1801 * semantic/db.el (semanticdb-equivalent-mode):
1802 * semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
1803 * semantic/idle.el (semantic-idle-work-for-one-buffer):
1804 Remove duplicated words in doc-strings.
1805
18062010-01-14 Juanma Barranquero <lekktu@gmail.com>
1807
1808 * semantic/edit.el (semantic-reparse-needed-change-hook)
1809 (semantic-no-reparse-needed-change-hook):
1810 * srecode/insert.el (srecode-resolve-argument-list)
1811 (srecode-template-inserter-blank, srecode-template-inserter-variable)
1812 (srecode-template-inserter-ask, srecode-template-inserter-width)
1813 (srecode-template-inserter-section-start)
1814 (srecode-template-inserter-section-end, srecode-insert-method):
ed9265fc 1815 Fix typos in docstrings.
dd9af436
CY
1816
18172010-01-12 Juanma Barranquero <lekktu@gmail.com>
1818
1819 * data-debug.el (data-debug): Fix customization group reference.
1820
18212010-01-12 Juanma Barranquero <lekktu@gmail.com>
1822
1823 * semantic/analyze.el (semantic-analyze-push-error)
1824 (semantic-analyze-context, semantic-analyze-context-assignment)
1825 (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
1826 * semantic/java.el (java-mode, semantic-tag-include-filename)
1827 (semantic-java-doc-keywords-map):
1828 * semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
1829 (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
1830 (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
1831 (semantic-c-classname, semantic-format-tag-uml-prototype)
1832 (semantic-c-dereference-namespace, semantic-analyze-type-constants):
1833 * semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
1834 (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
1835 (semantic-get-local-variables, semantic-end-of-command)
1836 (semantic-beginning-of-command, semantic-ctxt-current-class-list)
1837 (lisp-mode):
1838 * semantic/bovine/make.el (makefile-mode):
1839 * semantic/wisent/python.el (wisent-python-string-re)
1840 (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
1841 (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
1842 (semantic-lex, semantic-get-local-variables, python-mode):
1843 * semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
1844 * srecode/extract.el (srecode-extract-state-set)
1845 (srecode-extract-method): Fix typos in docstrings.
1846
18472010-01-10 Chong Yidong <cyd@stupidchicken.com>
1848
1849 * semantic.el (semantic-new-buffer-setup-functions):
1850 Add python parser.
1851
18522010-01-10 Richard Kim <emacs18@gmail.com>
1853
1854 * semantic/wisent/python-wy.el:
1855 * semantic/wisent/python.el: New files.
1856
18572010-01-02 Juanma Barranquero <lekktu@gmail.com>
1858
1859 * semantic/db-typecache.el (semanticdb-typecache-find-default):
1860 Fix typo in docstring.
1861
18622009-12-14 Chong Yidong <cyd@stupidchicken.com>
1863
1864 * semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
1865 (semantic-mru-bookmark-mode): Doc fixes.
1866
1867 * semantic/db.el (semanticdb-cache-get): Use error instead
1868 of assert.
1869
18702009-12-05 Chong Yidong <cyd@stupidchicken.com>
1871
1872 * semantic/ia.el (semantic-ia-complete-symbol):
1873 Make argument optional.
1874
18752009-12-05 Eric Ludlam <zappo@gnu.org>
1876
1877 * semantic/bovine/c.el (semantic-c-describe-environment):
1878 Describe project macro symbols.
1879
1880 * semantic/complete.el (semantic-complete-do-completion):
1881 Don't call semantic-collector-current-exact-match.
1882
1883 * ede.el (ede-apply-preprocessor-map): Accept lists of
1884 ede-objects as targets.
1885
4d789d84
SM
1886 * ede/pmake.el (ede-proj-makefile-insert-variables):
1887 Output a target's object list even if compiler vars are already in the
dd9af436
CY
1888 Makefile.
1889
1890 * ede/emacs.el (ede-preprocessor-map): Add config.h to the
1891 list of headers producing necessary macros.
1892
18932009-11-24 Glenn Morris <rgm@gnu.org>
1894
1895 * semantic/idle.el (global-semantic-idle-scheduler-mode):
1896 Move after definition of global-semantic-idle-tag-highlight-mode.
1897
18982009-11-22 Chong Yidong <cyd@stupidchicken.com>
1899
1900 * srecode/map.el (srecode-get-maps):
1901 * semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
1902 * semantic/wisent/comp.el (wisent-toggle-verbose-flag):
1903 * semantic/decorate/mode.el (semantic-decoration-mode)
1904 (semantic-toggle-decoration-style):
1905 * semantic/decorate/include.el
1906 (semantic-decoration-include-describe)
1907 (semantic-decoration-unknown-include-describe)
1908 (semantic-decoration-unparsed-include-describe)
1909 (semantic-decoration-all-include-summary):
1910 * semantic/bovine/c.el (semantic-c-debug-mode-init):
1911 * semantic/analyze/complete.el
1912 (semantic-analyze-possible-completions):
1913 * semantic/util-modes.el (semantic-highlight-edits-mode)
1914 (semantic-show-unmatched-syntax-mode)
1915 (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
1916 (semantic-highlight-func-mode):
1917 * semantic/util.el (semantic-describe-buffer):
1918 * semantic/symref.el (semantic-symref-find-references-by-name)
1919 (semantic-symref-find-tags-by-name)
1920 (semantic-symref-find-tags-by-regexp)
1921 (semantic-symref-find-tags-by-completion)
1922 (semantic-symref-find-file-references-by-name)
1923 (semantic-symref-find-text):
1924 * semantic/senator.el (senator-copy-tag, senator-kill-tag)
1925 (senator-yank-tag):
1926 * semantic/scope.el (semantic-calculate-scope):
1927 * semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
1928 * semantic/idle.el (semantic-idle-scheduler-mode)
1929 (define-semantic-idle-service):
1930 * semantic/complete.el (semantic-complete-analyze-inline)
1931 (semantic-complete-analyze-inline-idle):
1932 * semantic/analyze.el (semantic-analyze-current-context):
1933 * mode-local.el (describe-mode-local-bindings)
1934 (describe-mode-local-bindings-in-mode):
1935 * ede/make.el (ede-make-check-version):
1936 * ede/locate.el (ede-enable-locate-on-project):
1937 * cedet-idutils.el (cedet-idutils-expand-filename)
1938 (cedet-idutils-version-check):
1939 * cedet-global.el (cedet-gnu-global-expand-filename)
1940 (cedet-gnu-global-version-check):
1941 * cedet-cscope.el (cedet-cscope-expand-filename)
1942 (cedet-cscope-version-check): Use called-interactively-p instead
1943 of interactive-p.
1944
1945 * semantic/ia.el (semantic-ia-completion-format-tag-function):
1946 Use semantic-format-tag-prototype.
1947
19482009-11-21 Chong Yidong <cyd@stupidchicken.com>
1949
1950 * semantic/complete.el (semantic-complete-read-tag-engine)
1951 (semantic-complete-jump-local, semantic-complete-jump):
1952 Improve prompt string.
1953
19542009-11-20 Chong Yidong <cyd@stupidchicken.com>
1955
1956 * semantic/complete.el (semantic-complete-inline-map): Doc fix.
1957
1958 * semantic/idle.el (define-semantic-idle-service)
1959 (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
1960
19612009-11-20 Chong Yidong <cyd@stupidchicken.com>
1962
1963 * cedet.el (cedet-menu-map): Re-order menu items.
1964
1965 * semantic.el: Enable idle-mode menu items only if
1966 global-semantic-idle-scheduler-mode is enabled.
1967 (semantic-default-submodes): Doc fix.
1968
1969 * semantic/idle.el (global-semantic-idle-scheduler-mode):
1970 When turning off, disable other idle modes.
1971
19722009-11-15 Chong Yidong <cyd@stupidchicken.com>
1973
1974 * semantic/idle.el (semantic-idle-summary-mode)
1975 (semantic-idle-summary-mode): Define using define-minor-mode
1976 instead of define-semantic-idle-service.
1977 (semantic-idle-summary-mode): New function.
1978 (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
1979 that mouse motion does not reset the echo area.
1980
19812009-11-08 Chong Yidong <cyd@stupidchicken.com>
1982
4d789d84
SM
1983 * semantic/ctxt.el (semantic-get-local-variables):
1984 Disable the progress reporter entirely.
dd9af436
CY
1985
19862009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
1987
1988 * semantic/fw.el (semantic/loaddefs):
1989 * srecode.el (srecode/loaddefs):
1990 * ede.el (ede/loaddefs): Load rather than require.
1991 * ede/cpp-root.el:
1992 * ede/emacs.el:
1993 * ede/files.el:
1994 * ede/linux.el:
1995 * ede/locate.el:
1996 * ede/make.el:
1997 * ede/shell.el:
1998 * ede/speedbar.el:
1999 * ede/system.el:
2000 * ede/util.el:
2001 * semantic/analyze.el:
2002 * semantic/bovine.el:
2003 * semantic/complete.el:
2004 * semantic/ctxt.el:
2005 * semantic/db-file.el:
2006 * semantic/db-find.el:
2007 * semantic/db-global.el:
2008 * semantic/db-mode.el:
2009 * semantic/db-typecache.el:
2010 * semantic/db.el:
2011 * semantic/debug.el:
2012 * semantic/dep.el:
2013 * semantic/doc.el:
2014 * semantic/edit.el:
2015 * semantic/find.el:
2016 * semantic/format.el:
2017 * semantic/html.el:
2018 * semantic/ia-sb.el:
2019 * semantic/ia.el:
2020 * semantic/idle.el:
2021 * semantic/lex-spp.el:
2022 * semantic/lex.el:
2023 * semantic/mru-bookmark.el:
2024 * semantic/scope.el:
2025 * semantic/senator.el:
2026 * semantic/sort.el:
2027 * semantic/symref.el:
2028 * semantic/tag-file.el:
2029 * semantic/tag-ls.el:
2030 * semantic/tag-write.el:
2031 * semantic/tag.el:
2032 * semantic/util-modes.el:
2033 * semantic/analyze/complete.el:
2034 * semantic/analyze/refs.el:
2035 * semantic/bovine/c.el:
2036 * semantic/bovine/gcc.el:
2037 * semantic/bovine/make.el:
2038 * semantic/bovine/scm.el:
2039 * semantic/decorate/include.el:
2040 * semantic/decorate/mode.el:
2041 * semantic/symref/cscope.el:
2042 * semantic/symref/global.el:
2043 * semantic/symref/grep.el:
2044 * semantic/symref/idutils.el:
2045 * semantic/symref/list.el:
2046 * semantic/wisent/java-tags.el:
2047 * semantic/wisent/javascript.el:
2048 * srecode/compile.el:
2049 * srecode/cpp.el:
2050 * srecode/document.el:
2051 * srecode/el.el:
2052 * srecode/expandproto.el:
2053 * srecode/getset.el:
2054 * srecode/insert.el:
2055 * srecode/java.el:
2056 * srecode/map.el:
2057 * srecode/mode.el:
2058 * srecode/template.el:
2059 * srecode/texi.el: Remove the file-local setting of
2060 generated-autoload-feature.
2061
20622009-11-03 Glenn Morris <rgm@gnu.org>
2063
2064 * mode-local.el (with-mode-local): Doc fix.
2065
20662009-10-31 Chong Yidong <cyd@stupidchicken.com>
2067
2068 * cedet.el (cedet-menu-map): Remove Semantic and EDE menu
2069 items.
2070
2071 * ede.el (ede-minor-mode):
2072 * semantic.el (semantic-mode): Toggle menu separators.
2073
20742009-10-31 Glenn Morris <rgm@gnu.org>
2075
2076 * semantic/tag.el (semantic--tag-link-list-to-buffer):
2077 Use mapc rather than mapcar because the return value is never used.
2078
266a86bd
CY
2079 * srecode/template.el, semantic/wisent/javascript.el:
2080 * semantic/wisent/java-tags.el, semantic/texi.el:
dd9af436
CY
2081 * semantic/html.el:
2082 Suppress harmless warnings about setting up semantic-imenu (not
2083 part of Emacs) variables.
2084
20852009-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
2086
2087 * srecode/srt-mode.el (semantic-analyze-possible-completions):
2088 * semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
2089 * semantic/symref/grep.el (semantic-symref-perform-search):
2090 * semantic/bovine/gcc.el (semantic-gcc-query):
2091 * semantic/bovine/c.el (semantic-c-parse-lexical-token):
2092 * semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
2093 (semantic-analyzer-debug-global-symbol)
2094 (semantic-analyzer-debug-missing-innertype)
2095 (semantic-analyzer-debug-insert-include-summary):
2096 * semantic/util.el (semantic-file-tag-table):
2097 (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
2098 (semantic-recursive-find-nonterminal-by-name):
2099 * semantic/tag-ls.el (semantic-tag-calculate-parent-default):
2100 * semantic/tag-file.el (semantic-prototype-file):
2101 * semantic/symref.el (semantic-symref-parse-tool-output):
2102 * semantic/sb.el (semantic-sb-fetch-tag-table):
2103 * semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
2104 * semantic/idle.el (semantic-idle-work-for-one-buffer):
2105 (semantic-idle-summary-maybe-highlight):
2106 * semantic/ia-sb.el (semantic-ia-speedbar)
2107 (semantic-ia-sb-tag-info):
2108 * semantic/grammar.el (semantic-analyze-possible-completions):
2109 * semantic/find.el (semantic-brute-find-tag-by-position):
2110 * semantic/ede-grammar.el (project-compile-target):
2111 (ede-proj-makefile-insert-variables):
2112 * semantic/debug.el (semantic-debug-set-parser-location):
2113 (semantic-debug-set-source-location, semantic-debug-interface-layout)
2114 (semantic-debug-mode, semantic-debug):
2115 * semantic/db.el (semanticdb-needs-refresh-p):
2116 * semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
2117 * semantic/db-javascript.el (semanticdb-equivalent-mode):
2118 * semantic/db-find.el (semanticdb-find-log-new-search)
2119 (semanticdb-find-translate-path-includes--internal)
2120 (semanticdb-reset-log, semanticdb-find-log-activity):
2121 * semantic/db-file.el (object-write):
2122 * semantic/db-el.el (semanticdb-equivalent-mode):
2123 * semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
2124 (semanticdb-create-ebrowse-database):
2125 * semantic/db-debug.el (semanticdb-table-sanity-check):
2126 * semantic/complete.el (semantic-displayor-focus-request)
2127 (semantic-collector-calculate-completions-raw)
2128 (semantic-complete-read-tag-analyzer):
2129 * semantic/analyze.el (semantic-analyze-pulse):
2130 * ede/util.el (ede-update-version-in-source):
2131 * ede/proj.el (project-delete-target):
2132 * ede/proj-elisp.el (ede-update-version-in-source)
2133 (ede-proj-flush-autoconf):
2134 * ede/pconf.el (ede-proj-configure-synchronize)
2135 (ede-proj-configure-synchronize):
2136 * ede/locate.el (ede-locate-file-in-project-impl):
2137 * ede/linux.el (ede-linux-version):
2138 * ede/emacs.el (ede-emacs-version):
2139 * ede/dired.el (ede-dired-add-to-target):
2140 * ede.el (ede-buffer-header-file, ede-find-target)
2141 (ede-buffer-documentation-files, ede-project-buffers, ede-set)
2142 (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
2143 * cedet-idutils.el (cedet-idutils-fnid-call):
2144 (cedet-idutils-lid-call, cedet-idutils-expand-filename)
2145 (cedet-idutils-version-check):
2146 * cedet-global.el (cedet-gnu-global-call):
2147 (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
2148 (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
2149 * cedet-cscope.el (cedet-cscope-call)
2150 (cedet-cscope-expand-filename, cedet-cscope-version-check):
2151 Use with-current-buffer.
2152 * ede.el (ede-make-project-local-variable)
2153 (ede-set-project-variables, ede-set): Use dolist.
2154
21552009-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2156
2157 * mode-local.el (make-obsolete-overload): Add `when' argument.
2158 (overload-docstring-extension): Use that info.
2159 * semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
2160 * semantic/idle.el (semantic-eldoc-current-symbol-info):
2161 * semantic/tag-ls.el (semantic-nonterminal-protection)
2162 (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
2163 (semantic-nonterminal-full-name): Add the new `when' info.
2164 * semantic/decorate/mode.el (semantic/decorate): Require CL for
2165 `assert'.
2166
21672009-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2168
2169 * semantic/fw.el (semantic-alias-obsolete)
2170 (semantic-varalias-obsolete): Make the `when' arg mandatory.
2171 (define-mode-overload-implementation):
2172 * semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
2173 * semantic/wisent.el (wisent-lex-make-token-table):
2174 * semantic/util.el (semantic-file-token-stream)
2175 (semantic-something-to-stream):
2176 * semantic/tag.el (semantic-tag-make-assoc-list)
2177 (semantic-expand-nonterminal):
2178 * semantic/tag-file.el (semantic-find-nonterminal)
2179 (semantic-find-dependency, semantic-find-nonterminal)
2180 (semantic-find-dependency):
2181 * semantic/lex.el (semantic-flex-start, semantic-flex-end)
2182 (semantic-flex-text, semantic-flex-make-keyword-table)
2183 (semantic-flex-keyword-p, semantic-flex-keyword-put)
2184 (semantic-flex-keyword-get, semantic-flex-map-keywords)
2185 (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
2186 * semantic/java.el (semantic-java-prototype-nonterminal):
2187 * semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
2188 (semantic-after-idle-scheduler-reparse-hooks):
2189 * semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
2190 * semantic/db-mode.el (semanticdb-mode-hooks):
2191 * semantic.el (semantic-toplevel-bovine-table)
2192 (semantic-toplevel-bovine-cache)
2193 (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
2194 (semantic-init-mode-hooks, semantic-init-db-hooks)
2195 (semantic-bovination-working-type): Provide the `when' arg.
2196
21972009-10-24 Chong Yidong <cyd@stupidchicken.com>
2198
2199 * semantic/util.el (semantic-recursive-find-nonterminal-by-name):
2200 * semantic/tag.el (semantic-token-type-parent): Add WHEN
2201 argument to make-obsolete.
2202
2203 * semantic/fw.el (semantic-alias-obsolete)
2204 (semantic-varalias-obsolete): Add optional WHEN argument.
2205
22062009-10-21 Eric Ludlam <zappo@gnu.org>
2207
2208 * semantic/bovine/c.el (semantic-c-debug-mode-init)
2209 (semantic-c-debug-mode-init-pch): New functions.
2210 (semantic-c-debug-mode-init-last-mode): New var.
2211 (semantic-c-parse-lexical-token): Use them.
2212
2213 * semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
2214 When extracting the argument list, limit only by point-max.
2215
22162009-10-17 Chong Yidong <cyd@stupidchicken.com>
2217
2218 * srecode/srt.el:
2219 * srecode/compile.el:
2220 * semantic/mru-bookmark.el:
2221 * semantic/debug.el:
2222 * semantic/complete.el:
2223 * semantic/analyze.el: Require CL when compiling.
2224
22252009-10-17 Eric Ludlam <zappo@gnu.org>
2226
2227 * semantic/scope.el
2228 (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
2229 tmpscope so that the regular scope will continue to work.
2230
2231 * semantic/idle.el (semantic-idle-tag-highlight):
2232 Use semantic-idle-summary-highlight-face as the highlighting.
2233
dd9af436
CY
2234 * ede/project-am.el (project-run-target): New method.
2235 (project-run-target): New method.
2236
2237 * ede.el (ede-target): Add run target menu item.
2238 (ede-project, ede-minor-keymap): Add ede-run-target binding.
2239 (ede-run-target): New function.
2240 (ede-target::project-run-target): New method.
2241
2242 * ede/proj.el (project-run-target): New method.
2243
2244 * ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
2245 (ede-g++-libtool-shared-compiler): Remove SHELL. Remove COMMANDS.
2246 Add :rules.
2247 (ede-proj-target-makefile-shared-object): Only libtool compilers
2248 now available. Add linkers for libtool.
2249 (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
2250 (ede-proj-makefile-target-name): Always use .la extension.
2251
2252 * ede/proj-prog.el (project-run-target): New method.
2253
2254 * ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
2255 (ede-g++-linker): Change Change link lines.
2256
2257 * ede/pmake.el (ede-pmake-insert-variable-shared):
2258 When searching for old variables, go to the end of the buffer and
2259 search backward from there.
2260 (ede-proj-makefile-automake-insert-subdirs)
2261 (ede-proj-makefile-automake-insert-extradist): New methods.
2262 (ede-proj-makefile-create): Use them.
2263
2264 * ede/pconf.el (ede-proj-configure-test-required-file):
2265 Force FILE to expand to the current target. Use file-exists-p to
2266 check that it exists.
2267
2268 * ede/linux.el (ede-linux-version): Don't call "head".
2269 (ede-linux-load): Wrap dir in file-name-as-directory.
2270 Set :version slot.
2271
2272 * ede/files.el (ede-get-locator-object): When enabling
2273 locate, do so on "top".
2274
2275 * ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
2276 file-name-as-directory during compare.
2277 (ede-emacs-version): Return Emacs/XEmacs differentiator.
2278 Get version number from different places. Don't call egrep.
2279 (ede-emacs-load): Set :version slot. Call file-name-as-directory
2280 to set the directory.
2281
2282 * ede/shell.el: New file.
2283
2284 * inversion.el (inversion-decoders): Allow for stray . in
2285 alpha/beta variants.
2286
22872009-10-17 Glenn Morris <rgm@gnu.org>
2288
2289 * semantic/grammar.el (semantic-grammar--lex-delim-spec):
2290 All errors should have messages.
2291
22922009-10-10 Sascha Wilde <wilde@sha-bang.de>
2293
2294 * ede/proj-shared.el (ede-proj-makefile-target-name):
2295 Use .la for Automake.
2296
22972009-10-09 Chong Yidong <cyd@stupidchicken.com>
2298
2299 * ede/pconf.el (ede-proj-configure-synchronize):
2300 Use "autoreconf -i". Suggested by Andreas Schwab.
2301
23022009-10-08 Chong Yidong <cyd@stupidchicken.com>
2303
2304 * ede/proj.el (project-make-dist, project-compile-project):
2305 Fix filename test.
2306 (ede-proj-dist-makefile): Use expand-file-name instead of concat
2307 to expand file names.
2308
23092009-10-08 Chong Yidong <cyd@stupidchicken.com>
2310
2311 * ede/proj-obj.el (ede-gcc-linker): New var.
2312 (ede-proj-target-makefile-objectcode): Use it.
2313
2314 * ede/source.el (ede-want-any-source-files-p)
2315 (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
2316 Return search result. This error was introduced while merging.
2317
23182009-10-04 Chong Yidong <cyd@stupidchicken.com>
2319
2320 * semantic.el (semantic-new-buffer-setup-functions): New option.
2321 (semantic-new-buffer-fcn): Call parser setup functions here.
2322 (semantic-mode): Don't call parser setup functions here, it's done
2323 in semantic-new-buffer-fcn now.
2324 (semantic-mode): Parse all existing buffers when enabled.
2325
2326 * srecode/compile.el (srecode-compile-file):
2327 Call semantic-new-buffer-fcn if the buffer has not been parsed.
2328
23292009-10-04 Chong Yidong <cyd@stupidchicken.com>
2330
2331 * ede/pmake.el (ede-pmake-insert-variable-once): Delete.
2332
2333 * ede/proj-comp.el: Don't require ede/pmake at toplevel.
2334 (proj-comp-insert-variable-once): New macro, renamed from
2335 ede-pmake-insert-variable-once in ede/pmake.edl.
2336 (ede-proj-makefile-insert-variables): Use it.
2337
23382009-10-04 Juanma Barranquero <lekktu@gmail.com>
2339
2340 * ede/makefile-edit.el (makefile-beginning-of-command)
2341 (makefile-end-of-command):
2342 * srecode/srt-mode.el (semantic-beginning-of-context)
2343 (semantic-end-of-context): Fix previous change. Doc fixes.
2344
23452009-10-04 Juanma Barranquero <lekktu@gmail.com>
2346
2347 * ede/makefile-edit.el (makefile-beginning-of-command)
2348 (makefile-end-of-command):
2349 * semantic/lex.el (semantic-lex-token):
2350 * semantic/analyze/fcn.el
2351 (semantic-analyze-dereference-metatype-1):
2352 * semantic/bovine/c.el (semantic-lex-cpp-define)
2353 (semantic-lex-cpp-undef):
2354 * semantic/wisent/wisent.el (wisent-skip-block):
2355 * srecode/srt-mode.el (semantic-beginning-of-context)
2356 (semantic-end-of-context): Fix typos in docstrings.
2357
23582009-10-04 Chong Yidong <cyd@stupidchicken.com>
2359
2360 * ede.el (ede-project-placeholder-cache-file):
2361 * semantic/db-file.el (semanticdb-default-save-directory):
2362 * srecode/map.el (srecode-map-save-file):
2363 Use locate-user-emacs-file. Suggested by Juanma Barranquero.
2364
23652009-10-03 Chong Yidong <cyd@stupidchicken.com>
2366
2367 * srecode/insert.el: Require srecode/args.
2368
2369 * srecode/args.el: Require srecode/dictionary instead of
2370 srecode/insert.
2371
2372 * srecode/srt-mode.el (srecode-template-mode): Doc fix.
2373
2374 * files.el (auto-mode-alist): Add .srt and Project.ede.
2375
2376 * semantic.el (semantic-mode):
2377 Handle srecode-template-mode-hook as well.
2378 (semantic-mode): Use js-mode-hook for Javascript hook.
2379
2380 * srecode/template.el: Remove hook variable.
2381
2382 * ede/proj-comp.el: Require ede/pmake when compiling.
2383
2384 * ede.el (ede-target-forms-menu): Don't enable if no
2385 projects exist.
2386 (ede-project-placeholder-cache-file): Default to a file in
2387 user-emacs-directory.
2388
2389 * srecode/map.el (srecode-map-base-template-dir): Look for
2390 templates in data-directory.
2391 (srecode-map-save-file): Default to a file in user-emacs-directory.
2392
2393 * ede/srecode.el (ede-srecode-setup): Use default templates
2394 directory.
2395
23962009-09-30 Eric Ludlam <zappo@gnu.org>
2397
2398 * semantic/util-modes.el (semantic-highlight-func-mode):
2399 Doc fix.
2400
2401 * ede/proj-comp.el (ede-proj-makefile-insert-variables):
2402 Only insert each variable once.
2403
2404 * ede/pmake.el (ede-pmake-insert-variable-once): New macro.
2405 (ede-pmake-insert-variable-shared): Use it.
2406
2407 * ede/cpp-root.el (ede-preprocessor-map): Do not deref table
2408 for lexical table iff table is nil.
2409
24102009-10-01 Glenn Morris <rgm@gnu.org>
2411
2412 * semantic/bovine/gcc.el
2413 (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
2414 (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
2415
24162009-10-03 Glenn Morris <rgm@gnu.org>
2417
2418 * semantic/db-find.el (data-debug-insert-tag-list): Comment out
2419 declaration, currently false.
2420
24212009-10-01 Glenn Morris <rgm@gnu.org>
2422
2423 * cedet-files.el (cedet-directory-name-to-file-name):
2424 * cedet-idutils.el (cedet-idutils-search)
2425 (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
2426 (cedet-idutils-version-check):
2427 * cedet.el (cedet-version):
2428 * data-debug.el (data-debug-insert-overlay-button)
2429 (data-debug-insert-overlay-list-button)
2430 (data-debug-insert-buffer-button)
2431 (data-debug-insert-buffer-list-button)
2432 (data-debug-insert-process-button, data-debug-insert-ring-button)
2433 (data-debug-insert-widget, data-debug-insert-stuff-list-button)
2434 (data-debug-insert-stuff-vector-button)
2435 (data-debug-insert-symbol-button, data-debug-insert-string)
2436 (data-debug-insert-number, data-debug-insert-lambda-expression)
2437 (data-debug-insert-nil, data-debug-insert-simple-thing)
2438 (data-debug-insert-custom, data-debug-edebug-expr):
2439 * ede.el (ede-auto-add-method, ede-project-class-files)
2440 (global-ede-mode-map, ede-new, ede-debug-target)
2441 (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
2442 * semantic.el (semantic-minimum-working-buffer-size)
2443 (semantic-fetch-tags, semantic-submode-list)
2444 (semantic-default-submodes):
2445 * ede/source.el (ede-source-match):
2446 * ede/project-am.el (project-am-type-alist, project-add-file)
2447 (project-am-package-info):
2448 * ede/proj.el (ede-proj-target, project-new-target):
2449 * ede/proj-elisp.el (ede-proj-tweak-autoconf):
2450 * ede/proj-comp.el (ede-current-build-list):
2451 * ede/makefile-edit.el (makefile-move-to-macro):
2452 * ede/files.el (ede-toplevel-project-or-nil):
2453 * ede/cpp-root.el (initialize-instance):
2454 * ede/autoconf-edit.el (autoconf-find-last-macro)
2455 (autoconf-parameter-strip, autoconf-insert-new-macro):
2456 * semantic/wisent.el (wisent-lex-eoi):
2457 * semantic/util-modes.el (global-semantic-show-parser-state-mode)
2458 (semantic-show-parser-state-mode):
2459 * semantic/texi.el (semantic-texi-environment-regexp):
2460 * semantic/tag.el (semantic-tag-new-variable)
2461 (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
2462 (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
2463 (semantic--tag-deep-copy-tag-list)
2464 (semantic-tag-components-with-overlays-default):
2465 * semantic/symref.el (semantic-symref-find-text):
2466 * semantic/senator.el (senator-yank-tag)
2467 (senator-transpose-tags-up):
2468 * semantic/scope.el (semantic-analyze-scoped-tags-default)
2469 (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
2470 * semantic/sb.el (semantic-sb-autoexpand-length):
2471 * semantic/lex.el (semantic-lex-comment-regex)
2472 (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
2473 (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
2474 * semantic/lex-spp.el
2475 (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
2476 (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
2477 * semantic/idle.el
2478 (semantic-idle-summary-current-symbol-info-brutish)
2479 (semantic-idle-summary-current-symbol-info-default):
2480 * semantic/grammar.el (semantic-grammar-recreate-package)
2481 (semantic--grammar-macro-compl-dict):
2482 * semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
2483 * semantic/format.el (semantic-format-tag-custom-list)
2484 (semantic-format-tag-canonical-name-default):
2485 * semantic/find.el (semantic-find-tag-by-overlay-in-region)
2486 (semantic-find-tags-for-completion)
2487 (semantic-find-tags-by-scope-protection-default)
2488 (semantic-deep-find-tags-for-completion):
2489 * semantic/edit.el
2490 (semantic-edits-incremental-reparse-failed-hook)
2491 (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
2492 (semantic-edits-splice-remove, semantic-edits-splice-replace):
2493 * semantic/doc.el (semantic-documentation-comment-preceeding-tag):
2494 * semantic/dep.el (semantic-dependency-include-path):
2495 * semantic/db.el (semanticdb-default-find-index-class)
2496 (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
2497 (semanticdb-project-roots):
2498 * semantic/db-find.el (semanticdb-implied-include-tags)
2499 (semanticdb-find-adebug-insert-scanned-tag-cons)
2500 (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
2501 (semanticdb-brute-deep-find-tags-for-completion):
2502 * semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
2503 * semantic/ctxt.el (semantic-beginning-of-context-default)
2504 (semantic-end-of-context-default)
2505 (semantic-ctxt-current-function-default)
2506 (semantic-ctxt-scoped-types-default):
2507 * semantic/complete.el (semantic-complete-read-tag-engine)
2508 (semantic-complete-inline-tag-engine)
2509 (semantic-complete-inline-custom-type)
2510 (semantic-complete-read-tag-analyzer):
2511 * semantic/chart.el (semantic-chart-tags-by-class)
2512 (semantic-chart-database-size):
2513 * semantic/analyze.el (semantic-analyze-current-symbol)
2514 (semantic-analyze-current-context):
2515 * semantic/symref/list.el (semantic-symref)
2516 (semantic-symref-hide-buffer, semantic-symref-symbol):
2517 * semantic/symref/grep.el (semantic-symref-grep-use-template):
2518 * semantic/symref/filter.el (semantic-symref-hits-in-region):
2519 * semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
2520 * semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
2521 (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
2522 (semantic-c-dereference-template):
2523 * semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
2524 (semantic--analyze-refs-full-lookup-with-parents)
2525 (semantic--analyze-refs-full-lookup-simple):
2526 * semantic/analyze/complete.el
2527 (semantic-analyze-possible-completions):
2528 * srecode/table.el (srecode-mode-table-new):
2529 * srecode/srt.el (srecode-read-variable-name):
2530 * srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
2531 * srecode/semantic.el (srecode-semantic-handle-:tag)
2532 (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
2533 * srecode/map.el (srecode-current-map):
2534 * srecode/insert.el (srecode-insert)
2535 (srecode-insert-variable-secondname-handler, srecode-insert-method)
2536 (srecode-template-inserter-point-override)
2537 (srecode-insert-include-lookup):
2538 * srecode/getset.el (srecode-auto-choose-class):
2539 * srecode/extract.el (srecode-inserter-extract):
2540 * srecode/document.el
2541 (srecode-document-autocomment-return-last-alist)
2542 (srecode-document-autocomment-param-type-alist)
2543 (srecode-document-insert-function-comment)
2544 (srecode-document-insert-variable-one-line-comment)
2545 (srecode-document-function-name-comment):
2546 * srecode/dictionary.el (srecode-create-dictionary)
2547 (srecode-compound-toString):
2548 * srecode/compile.el (srecode-flush-active-templates):
2549 * srecode/args.el (srecode-semantic-handle-:blank):
2550 Doc/message fixes.
2551
25522009-10-01 Juanma Barranquero <lekktu@gmail.com>
2553
2554 * semantic/wisent/javat-wy.el
2555 (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
2556
25572009-09-30 Juanma Barranquero <lekktu@gmail.com>
2558
2559 * srecode/expandproto.el: Fix provide statement.
2560
dd9af436
CY
25612009-09-30 Sascha Wilde <wilde@sha-bang.de>
2562
2563 * ede/srecode.el: Fix provide statement.
2564
25652009-09-30 Glenn Morris <rgm@gnu.org>
2566
2567 * ede/proj.el (ede-proj-target-makefile-miscelaneous):
2568 * ede/proj-aux.el (ede-aux-source):
2569 * ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
2570 (ede-misc-source):
2571 * semantic/mru-bookmark.el (semantic-mrub-completing-read)
2572 (semantic-mrub-switch-tags): Fix doc typos.
2573
2574 * semantic/db-global.el (data-debug-new-buffer)
2575 (data-debug-insert-thing): Remove unneeded declarations (one broken).
2576 (semanticdb-enable-gnu-global-databases): Fix prompt typo.
2577
2578 * semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
2579
2580 * semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
2581 use of CL function `remove-if-not'.
2582
25832009-09-29 Glenn Morris <rgm@gnu.org>
2584
2585 * semantic/symref/idutils.el:
2586 * semantic/symref/list.el: Relicense under GPLv3+.
2587
2588 * ede/srecode.el (srecode-resolve-arguments): Fix declaration.
2589
2590 * semantic/complete.el (semantic-displayor-focus-abstract-child-p):
2591 * semantic/tag-file.el (semanticdb-table-child-p):
2592 * srecode/compile.el (srecode-template-inserter-newline-child-p):
2593 Mark declarations not understood by check-declare.
2594
25952009-09-28 Eric Ludlam <zappo@gnu.org>
2596
2597 CEDET (development tools) package merged.
2598
2599 * *.el:
2600 * ede/*.el:
2601 * semantic/*.el:
2602 * srecode/*.el: New files.
2603
26042009-09-28 Eric Ludlam <zappo@gnu.org>
2605
dd9af436
CY
2606 * cedet-cscope.el:
2607 * cedet-files.el:
2608 * cedet-global.el:
2609 * cedet-idutils.el:
2610 * data-debug.el:
2611 * inversion.el:
2612 * mode-local.el:
2613 * pulse.el: New files.
5df4f04c
GM
2614
2615;; Local Variables:
2616;; coding: utf-8
2617;; End:
2618
ab422c4d 2619 Copyright (C) 2009-2013 Free Software Foundation, Inc.
5df4f04c
GM
2620
2621 This file is part of GNU Emacs.
2622
2623 GNU Emacs is free software: you can redistribute it and/or modify
2624 it under the terms of the GNU General Public License as published by
2625 the Free Software Foundation, either version 3 of the License, or
2626 (at your option) any later version.
2627
2628 GNU Emacs is distributed in the hope that it will be useful,
2629 but WITHOUT ANY WARRANTY; without even the implied warranty of
2630 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2631 GNU General Public License for more details.
2632
2633 You should have received a copy of the GNU General Public License
2634 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.