annotate lisp/cedet/semantic/util.el @ 112453:06719a229a46 default tip

* calc/calc.el (calc-default-power-reference-level) (calc-default-field-reference-level): New variables. * calc/calc-units.el (math-standard-units): Add dB and Np. (math-logunits): New variable. (math-extract-logunits, math-logcombine, calcFunc-luplus) (calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level) (calcFunc-fieldlevel, calcFunc-powerlevel, calc-level): New functions. (math-find-base-units-rec): Add entry for ln(10). * calc/calc-help.el (calc-u-prefix-help): Add logarithmic help. (calc-ul-prefix-help): New function. * calc/calc-ext.el (calc-init-extensions): Autoload new units functions. Add keybindings for new units functions.
author Jay Belanger <jay.p.belanger@gmail.com>
date Sun, 23 Jan 2011 23:08:04 -0600
parents ef719132ddfa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
104446
df08b7ab0ba0 lisp/cedet/semantic/analyze.el: Add local vars for autoloading.
Chong Yidong <cyd@stupidchicken.com>
parents: 104416
diff changeset
1 ;;; semantic/util.el --- Utilities for use with semantic tag tables
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
2
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
3 ;;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007,
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 110523
diff changeset
4 ;;; 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
5
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
6 ;; Author: Eric M. Ludlam <zappo@gnu.org>
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
7 ;; Keywords: syntax
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
8
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
10
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
13 ;; the Free Software Foundation, either version 3 of the License, or
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
14 ;; (at your option) any later version.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
15
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
19 ;; GNU General Public License for more details.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
20
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
23
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
24 ;;; Commentary:
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
25 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
26 ;; Semantic utility API for use with semantic tag tables.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
27 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
28
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
29 (require 'semantic)
104447
273e528a9f9b * emacs-lisp/autoload.el (generated-autoload-load-name): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 104446
diff changeset
30
105260
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
31 (eval-when-compile
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
32 (require 'semantic/db-find)
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
33 ;; For semantic-find-tags-by-class, semantic--find-tags-by-function,
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
34 ;; and semantic-brute-find-tag-standard:
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
35 (require 'semantic/find))
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
36
104447
273e528a9f9b * emacs-lisp/autoload.el (generated-autoload-load-name): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 104446
diff changeset
37 (declare-function data-debug-insert-stuff-list "data-debug")
273e528a9f9b * emacs-lisp/autoload.el (generated-autoload-load-name): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 104446
diff changeset
38 (declare-function data-debug-insert-thing "data-debug")
105260
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
39 (declare-function semantic-ctxt-current-symbol-and-bounds "semantic/ctxt")
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
40
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
41 ;;; Code:
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
42
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
43 (defvar semantic-type-relation-separator-character '(".")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
44 "Character strings used to separate a parent/child relationship.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
45 This list of strings are used for displaying or finding separators
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
46 in variable field dereferencing. The first character will be used for
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
47 display. In C, a type field is separated like this: \"type.field\"
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
48 thus, the character is a \".\". In C, and additional value of \"->\"
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
49 would be in the list, so that \"type->field\" could be found.")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
50 (make-variable-buffer-local 'semantic-type-relation-separator-character)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
51
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
52 (defvar semantic-equivalent-major-modes nil
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
53 "List of major modes which are considered equivalent.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
54 Equivalent modes share a parser, and a set of override methods.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
55 A value of nil means that the current major mode is the only one.")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
56 (make-variable-buffer-local 'semantic-equivalent-major-modes)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
57
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
58 ;; These semanticdb calls will throw warnings in the byte compiler.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
59 ;; Doing the right thing to make them available at compile time
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
60 ;; really messes up the compilation sequence.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
61 (defun semantic-file-tag-table (file)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
62 "Return a tag table for FILE.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
63 If it is loaded, return the stream after making sure it's ok.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
64 If FILE is not loaded, check to see if `semanticdb' feature exists,
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
65 and use it to get tags from files not in memory.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
66 If FILE is not loaded, and semanticdb is not available, find the file
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
67 and parse it."
104492
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
68 (save-match-data
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
69 (if (find-buffer-visiting file)
105799
3fe6da4a95a9 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105760
diff changeset
70 (with-current-buffer (find-buffer-visiting file)
104492
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
71 (semantic-fetch-tags))
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
72 ;; File not loaded
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
73 (if (and (require 'semantic/db-mode)
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
74 (semanticdb-minor-mode-p))
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
75 ;; semanticdb is around, use it.
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
76 (semanticdb-file-stream file)
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
77 ;; Get the stream ourselves.
105799
3fe6da4a95a9 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105760
diff changeset
78 (with-current-buffer (find-file-noselect file)
104492
8db96f200ac8 Synch to Eric Ludlam's upstream CEDET repository.
Chong Yidong <cyd@stupidchicken.com>
parents: 104477
diff changeset
79 (semantic-fetch-tags))))))
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
80
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
81 (semantic-alias-obsolete 'semantic-file-token-stream
105760
d0906291f75b * cedet/semantic/fw.el (semantic-alias-obsolete)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105750
diff changeset
82 'semantic-file-tag-table "23.2")
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
83
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
84 (defun semantic-something-to-tag-table (something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
85 "Convert SOMETHING into a semantic tag table.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
86 Something can be a tag with a valid BUFFER property, a tag table, a
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
87 buffer, or a filename. If SOMETHING is nil return nil."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
88 (cond
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
89 ;; A list of tags
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
90 ((and (listp something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
91 (semantic-tag-p (car something)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
92 something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
93 ;; A buffer
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
94 ((bufferp something)
105799
3fe6da4a95a9 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105760
diff changeset
95 (with-current-buffer something
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
96 (semantic-fetch-tags)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
97 ;; A Tag: Get that tag's buffer
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
98 ((and (semantic-tag-with-position-p something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
99 (semantic-tag-in-buffer-p something))
105799
3fe6da4a95a9 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105760
diff changeset
100 (with-current-buffer (semantic-tag-buffer something)
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
101 (semantic-fetch-tags)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
102 ;; Tag with a file name in it
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
103 ((and (semantic-tag-p something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
104 (semantic-tag-file-name something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
105 (file-exists-p (semantic-tag-file-name something)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
106 (semantic-file-tag-table
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
107 (semantic-tag-file-name something)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
108 ;; A file name
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
109 ((and (stringp something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
110 (file-exists-p something))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
111 (semantic-file-tag-table something))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
112 ;; A Semanticdb table
104447
273e528a9f9b * emacs-lisp/autoload.el (generated-autoload-load-name): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 104446
diff changeset
113 ((and (featurep 'semantic/db)
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
114 (semanticdb-minor-mode-p)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
115 (semanticdb-abstract-table-child-p something))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
116 (semanticdb-refresh-table something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
117 (semanticdb-get-tags something))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
118 ;; Semanticdb find-results
104447
273e528a9f9b * emacs-lisp/autoload.el (generated-autoload-load-name): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 104446
diff changeset
119 ((and (featurep 'semantic/db)
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
120 (semanticdb-minor-mode-p)
104447
273e528a9f9b * emacs-lisp/autoload.el (generated-autoload-load-name): New var.
Chong Yidong <cyd@stupidchicken.com>
parents: 104446
diff changeset
121 (require 'semantic/db-find)
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
122 (semanticdb-find-results-p something))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
123 (semanticdb-strip-find-results something))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
124 ;; NOTE: This commented out since if a search result returns
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
125 ;; empty, that empty would turn into everything on the next search.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
126 ;; Use the current buffer for nil
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
127 ;; ((null something)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
128 ;; (semantic-fetch-tags))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
129 ;; don't know what it is
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
130 (t nil)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
131
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
132 (semantic-alias-obsolete 'semantic-something-to-stream
105760
d0906291f75b * cedet/semantic/fw.el (semantic-alias-obsolete)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105750
diff changeset
133 'semantic-something-to-tag-table "23.2")
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
134
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
135 ;;; Completion APIs
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
136 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
137 ;; These functions provide minibuffer reading/completion for lists of
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
138 ;; nonterminals.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
139 (defvar semantic-read-symbol-history nil
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
140 "History for a symbol read.")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
141
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
142 (defun semantic-read-symbol (prompt &optional default stream filter)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
143 "Read a symbol name from the user for the current buffer.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
144 PROMPT is the prompt to use.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
145 Optional arguments:
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
146 DEFAULT is the default choice. If no default is given, one is read
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
147 from under point.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
148 STREAM is the list of tokens to complete from.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
149 FILTER is provides a filter on the types of things to complete.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
150 FILTER must be a function to call on each element."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
151 (if (not default) (setq default (thing-at-point 'symbol)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
152 (if (not stream) (setq stream (semantic-fetch-tags)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
153 (setq stream
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
154 (if filter
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
155 (semantic--find-tags-by-function filter stream)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
156 (semantic-brute-find-tag-standard stream)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
157 (if (and default (string-match ":" prompt))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
158 (setq prompt
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
159 (concat (substring prompt 0 (match-end 0))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
160 " (default: " default ") ")))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
161 (completing-read prompt stream nil t ""
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
162 'semantic-read-symbol-history
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
163 default))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
164
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
165 (defun semantic-read-variable (prompt &optional default stream)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
166 "Read a variable name from the user for the current buffer.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
167 PROMPT is the prompt to use.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
168 Optional arguments:
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
169 DEFAULT is the default choice. If no default is given, one is read
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
170 from under point.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
171 STREAM is the list of tokens to complete from."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
172 (semantic-read-symbol
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
173 prompt default
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
174 (or (semantic-find-tags-by-class
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
175 'variable (or stream (current-buffer)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
176 (error "No local variables"))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
177
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
178 (defun semantic-read-function (prompt &optional default stream)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
179 "Read a function name from the user for the current buffer.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
180 PROMPT is the prompt to use.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
181 Optional arguments:
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
182 DEFAULT is the default choice. If no default is given, one is read
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
183 from under point.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
184 STREAM is the list of tags to complete from."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
185 (semantic-read-symbol
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
186 prompt default
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
187 (or (semantic-find-tags-by-class
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
188 'function (or stream (current-buffer)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
189 (error "No local functions"))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
190
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
191 (defun semantic-read-type (prompt &optional default stream)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
192 "Read a type name from the user for the current buffer.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
193 PROMPT is the prompt to use.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
194 Optional arguments:
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
195 DEFAULT is the default choice. If no default is given, one is read
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
196 from under point.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
197 STREAM is the list of tags to complete from."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
198 (semantic-read-symbol
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
199 prompt default
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
200 (or (semantic-find-tags-by-class
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
201 'type (or stream (current-buffer)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
202 (error "No local types"))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
203
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
204
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
205 ;;; Interactive Functions for
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
206 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
207 (defun semantic-describe-tag (&optional tag)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
208 "Describe TAG in the minibuffer.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
209 If TAG is nil, describe the tag under the cursor."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
210 (interactive)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
211 (if (not tag) (setq tag (semantic-current-tag)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
212 (semantic-fetch-tags)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
213 (if tag (message (semantic-format-tag-summarize tag))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
214
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
215
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
216 ;;; Putting keys on tags.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
217 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
218 (defun semantic-add-label (label value &optional tag)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
219 "Add a LABEL with VALUE on TAG.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
220 If TAG is not specified, use the tag at point."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
221 (interactive "sLabel: \nXValue (eval): ")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
222 (if (not tag)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
223 (progn
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
224 (semantic-fetch-tags)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
225 (setq tag (semantic-current-tag))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
226 (semantic--tag-put-property tag (intern label) value)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
227 (message "Added label %s with value %S" label value))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
228
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
229 (defun semantic-show-label (label &optional tag)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
230 "Show the value of LABEL on TAG.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
231 If TAG is not specified, use the tag at point."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
232 (interactive "sLabel: ")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
233 (if (not tag)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
234 (progn
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
235 (semantic-fetch-tags)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
236 (setq tag (semantic-current-tag))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
237 (message "%s: %S" label (semantic--tag-get-property tag (intern label))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
238
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
239
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
240 ;;; Hacks
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
241 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
242 ;; Some hacks to help me test these functions
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
243 (defun semantic-describe-buffer-var-helper (varsym buffer)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
244 "Display to standard out the value of VARSYM in BUFFER."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
245 (require 'data-debug)
105799
3fe6da4a95a9 * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105760
diff changeset
246 (let ((value (with-current-buffer buffer
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
247 (symbol-value varsym))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
248 (cond
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
249 ((and (consp value)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
250 (< (length value) 10))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
251 ;; Draw the list of things in the list.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
252 (princ (format " %s: #<list of %d items>\n"
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
253 varsym (length value)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
254 (data-debug-insert-stuff-list
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
255 value " " )
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
256 )
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
257 (t
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
258 ;; Else do a one-liner.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
259 (data-debug-insert-thing
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
260 value " " (concat " " (symbol-name varsym) ": "))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
261 ))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
262
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
263 (defun semantic-describe-buffer ()
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
264 "Describe the semantic environment for the current buffer."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
265 (interactive)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
266 (let ((buff (current-buffer))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
267 )
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
268
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
269 (with-output-to-temp-buffer (help-buffer)
106197
019d906c8f48 * cedet/srecode/map.el (srecode-get-maps):
Chong Yidong <cyd@stupidchicken.com>
parents: 105799
diff changeset
270 (help-setup-xref (list #'semantic-describe-buffer)
019d906c8f48 * cedet/srecode/map.el (srecode-get-maps):
Chong Yidong <cyd@stupidchicken.com>
parents: 105799
diff changeset
271 (called-interactively-p 'interactive))
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
272 (with-current-buffer standard-output
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
273 (princ "Semantic Configuration in ")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
274 (princ (buffer-name buff))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
275 (princ "\n\n")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
276
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
277 (princ "Buffer specific configuration items:\n")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
278 (let ((vars '(major-mode
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
279 semantic-case-fold
110523
a5ad4f188e19 Synch Semantic to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
280 semantic-tag-expand-function
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
281 semantic-parser-name
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
282 semantic-parse-tree-state
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
283 semantic-lex-analyzer
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
284 semantic-lex-reset-hooks
110523
a5ad4f188e19 Synch Semantic to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
285 semantic-lex-syntax-modifications
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
286 )))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
287 (dolist (V vars)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
288 (semantic-describe-buffer-var-helper V buff)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
289
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
290 (princ "\nGeneral configuration items:\n")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
291 (let ((vars '(semantic-inhibit-functions
104513
a6a812dd2d88 * cedet/semantic/lex.el (semantic-lex-reset-hooks): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 104508
diff changeset
292 semantic-init-hook
a6a812dd2d88 * cedet/semantic/lex.el (semantic-lex-reset-hooks): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 104508
diff changeset
293 semantic-init-db-hook
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
294 semantic-unmatched-syntax-hook
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
295 semantic--before-fetch-tags-hook
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
296 semantic-after-toplevel-bovinate-hook
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
297 semantic-after-toplevel-cache-change-hook
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
298 semantic-before-toplevel-cache-flush-hook
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
299 semantic-dump-parse
110523
a5ad4f188e19 Synch Semantic to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
300 semantic-type-relation-separator-character
a5ad4f188e19 Synch Semantic to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
301 semantic-command-separation-character
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
302 )))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
303 (dolist (V vars)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
304 (semantic-describe-buffer-var-helper V buff)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
305
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
306 (princ "\n\n")
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
307 (mode-local-describe-bindings-2 buff)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
308 )))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
309 )
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
310
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
311 (defun semantic-assert-valid-token (tok)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
312 "Assert that TOK is a valid token."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
313 (if (semantic-tag-p tok)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
314 (if (semantic-tag-with-position-p tok)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
315 (let ((o (semantic-tag-overlay tok)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
316 (if (and (semantic-overlay-p o)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
317 (not (semantic-overlay-live-p o)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
318 (let ((debug-on-error t))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
319 (error "Tag %s is invalid!" (semantic-tag-name tok)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
320 ;; else, tag is OK.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
321 ))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
322 ;; Positionless tags are also ok.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
323 )
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
324 (let ((debug-on-error t))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
325 (error "Not a semantic tag: %S" tok))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
326
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
327 (defun semantic-sanity-check (&optional cache over notfirst)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
328 "Perform a sanity check on the current buffer.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
329 The buffer's set of overlays, and those overlays found via the cache
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
330 are verified against each other.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
331 CACHE, and OVER are the semantic cache, and the overlay list.
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
332 NOTFIRST indicates that this was not the first call in the recursive use."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
333 (interactive)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
334 (if (and (not cache) (not over) (not notfirst))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
335 (setq cache semantic--buffer-cache
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
336 over (semantic-overlays-in (point-min) (point-max))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
337 (while cache
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
338 (let ((chil (semantic-tag-components-with-overlays (car cache))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
339 (if (not (memq (semantic-tag-overlay (car cache)) over))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
340 (message "Tag %s not in buffer overlay list."
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
341 (semantic-format-tag-concise-prototype (car cache))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
342 (setq over (delq (semantic-tag-overlay (car cache)) over))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
343 (setq over (semantic-sanity-check chil over t))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
344 (setq cache (cdr cache))))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
345 (if (not notfirst)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
346 ;; Strip out all overlays which aren't semantic overlays
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
347 (let ((o nil))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
348 (while over
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
349 (when (and (semantic-overlay-get (car over) 'semantic)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
350 (not (eq (semantic-overlay-get (car over) 'semantic)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
351 'unmatched)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
352 (setq o (cons (car over) o)))
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
353 (setq over (cdr over)))
110523
a5ad4f188e19 Synch Semantic to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
354 (when (called-interactively-p 'any)
a5ad4f188e19 Synch Semantic to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents: 106815
diff changeset
355 (message "Remaining overlays: %S" o))))
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
356 over)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
357
104508
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
358 ;;; Interactive commands (from Senator).
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
359
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
360 ;; The Senator library from upstream CEDET is not included in the
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
361 ;; built-in version of Emacs. The plan is to fold it into the
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
362 ;; different parts of CEDET and Emacs, so that it works
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
363 ;; "transparently". Here are some interactive commands based on
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
364 ;; Senator.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
365
104513
a6a812dd2d88 * cedet/semantic/lex.el (semantic-lex-reset-hooks): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 104508
diff changeset
366 ;; Symbol completion
a6a812dd2d88 * cedet/semantic/lex.el (semantic-lex-reset-hooks): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 104508
diff changeset
367
104508
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
368 (defun semantic-find-tag-for-completion (prefix)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
369 "Find all tags with name starting with PREFIX.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
370 This uses `semanticdb' when available."
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
371 (let (result ctxt)
104513
a6a812dd2d88 * cedet/semantic/lex.el (semantic-lex-reset-hooks): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents: 104508
diff changeset
372 ;; Try the Semantic analyzer
104508
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
373 (condition-case nil
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
374 (and (featurep 'semantic/analyze)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
375 (setq ctxt (semantic-analyze-current-context))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
376 (setq result (semantic-analyze-possible-completions ctxt)))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
377 (error nil))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
378 (or result
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
379 ;; If the analyzer fails, then go into boring completion.
105260
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
380 (if (and (featurep 'semantic/db)
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
381 (semanticdb-minor-mode-p)
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
382 (require 'semantic/db-find))
104508
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
383 (semanticdb-fast-strip-find-results
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
384 (semanticdb-deep-find-tags-for-completion prefix))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
385 (semantic-deep-find-tags-for-completion prefix (current-buffer))))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
386
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
387 (defun semantic-complete-symbol (&optional predicate)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
388 "Complete the symbol under point, using Semantic facilities.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
389 When called from a program, optional arg PREDICATE is a predicate
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
390 determining which symbols are considered."
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
391 (interactive)
105260
bbd7017a25d9 CEDET (development tools) package merged.
Chong Yidong <cyd@stupidchicken.com>
parents: 104519
diff changeset
392 (require 'semantic/ctxt)
104508
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
393 (let* ((start (car (nth 2 (semantic-ctxt-current-symbol-and-bounds
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
394 (point)))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
395 (pattern (regexp-quote (buffer-substring start (point))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
396 collection completion)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
397 (when start
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
398 (if (and semantic--completion-cache
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
399 (eq (nth 0 semantic--completion-cache) (current-buffer))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
400 (= (nth 1 semantic--completion-cache) start)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
401 (save-excursion
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
402 (goto-char start)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
403 (looking-at (nth 3 semantic--completion-cache))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
404 ;; Use cached value.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
405 (setq collection (nthcdr 4 semantic--completion-cache))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
406 ;; Perform new query.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
407 (setq collection (semantic-find-tag-for-completion pattern))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
408 (setq semantic--completion-cache
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
409 (append (list (current-buffer) start 0 pattern)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
410 collection))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
411 (if (null collection)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
412 (let ((str (if pattern (format " for \"%s\"" pattern) "")))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
413 (if (window-minibuffer-p (selected-window))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
414 (minibuffer-message (format " [No completions%s]" str))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
415 (message "Can't find completion%s" str)))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
416 (setq completion (try-completion pattern collection predicate))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
417 (if (string= pattern completion)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
418 (let ((list (all-completions pattern collection predicate)))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
419 (setq list (sort list 'string<))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
420 (if (> (length list) 1)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
421 (with-output-to-temp-buffer "*Completions*"
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
422 (display-completion-list list pattern))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
423 ;; Bury any out-of-date completions buffer.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
424 (let ((win (get-buffer-window "*Completions*" 0)))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
425 (if win (with-selected-window win (bury-buffer))))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
426 ;; Exact match
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
427 (delete-region start (point))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
428 (insert completion)
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
429 ;; Bury any out-of-date completions buffer.
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
430 (let ((win (get-buffer-window "*Completions*" 0)))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
431 (if win (with-selected-window win (bury-buffer))))))))
90ca5d588aa9 * cedet/semantic.el: Add autoloads for semantic/idle functions.
Chong Yidong <cyd@stupidchicken.com>
parents: 104492
diff changeset
432
104415
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
433 (provide 'semantic/util)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
434
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
435 ;;; Minor modes
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
436 ;;
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
437 (require 'semantic/util-modes)
4472b64928ad cedet/semantic/util.el: New file.
Chong Yidong <cyd@stupidchicken.com>
parents:
diff changeset
438
104446
df08b7ab0ba0 lisp/cedet/semantic/analyze.el: Add local vars for autoloading.
Chong Yidong <cyd@stupidchicken.com>
parents: 104416
diff changeset
439 ;;; semantic/util.el ends here