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