2009-09-28 15:15:00 +00:00
|
|
|
|
;;; semantic/fw.el --- Framework for Semantic
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
2020-01-01 00:19:43 +00:00
|
|
|
|
;;; Copyright (C) 1999-2020 Free Software Foundation, Inc.
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;
|
|
|
|
|
;; Semantic has several core features shared across it's lex/parse/util
|
|
|
|
|
;; stages. This used to clutter semantic.el some. These routines are all
|
|
|
|
|
;; simple things that are not parser specific, but aid in making
|
|
|
|
|
;; semantic flexible and compatible amongst different Emacs platforms.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
;;
|
|
|
|
|
(require 'mode-local)
|
|
|
|
|
(require 'eieio)
|
2017-04-13 20:12:02 -04:00
|
|
|
|
(load "semantic/loaddefs" 'noerror 'nomessage)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
;;; Compatibility
|
2012-10-02 02:10:29 +08:00
|
|
|
|
;;
|
2019-06-20 03:18:52 +02:00
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-live-p 'overlay-buffer "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-make-overlay 'make-overlay "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-put 'overlay-put "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-get 'overlay-get "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-properties
|
|
|
|
|
'overlay-properties "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-move 'move-overlay "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-delete 'delete-overlay "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlays-at 'overlays-at "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlays-in 'overlays-in "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-buffer 'overlay-buffer "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-start 'overlay-start "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-end 'overlay-end "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-next-change
|
|
|
|
|
'next-overlay-change "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-previous-change
|
|
|
|
|
'previous-overlay-change "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-lists 'overlay-lists "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-overlay-p 'overlayp "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-read-event 'read-event "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-popup-menu 'popup-menu "27.1")
|
|
|
|
|
(define-obsolete-function-alias 'semantic-buffer-local-value
|
|
|
|
|
'buffer-local-value "27.1")
|
2019-06-20 02:29:20 +02:00
|
|
|
|
|
|
|
|
|
(defun semantic-event-window (event)
|
|
|
|
|
"Extract the window from EVENT."
|
|
|
|
|
(car (car (cdr event))))
|
|
|
|
|
|
2019-10-04 15:29:30 +02:00
|
|
|
|
(define-obsolete-function-alias 'semantic-make-local-hook #'identity "27.1")
|
2019-06-20 02:29:20 +02:00
|
|
|
|
|
|
|
|
|
(defalias 'semantic-mode-line-update #'force-mode-line-update)
|
|
|
|
|
|
|
|
|
|
;; Since Emacs 22 major mode functions should use `run-mode-hooks' to
|
|
|
|
|
;; run major mode hooks.
|
|
|
|
|
(defalias 'semantic-run-mode-hooks
|
|
|
|
|
(if (fboundp 'run-mode-hooks)
|
|
|
|
|
'run-mode-hooks
|
|
|
|
|
'run-hooks))
|
2012-10-02 02:10:29 +08:00
|
|
|
|
|
2012-10-04 22:57:24 -07:00
|
|
|
|
;; Fancy compat usage now handled in cedet-compat
|
2019-06-20 02:29:20 +02:00
|
|
|
|
(defalias 'semantic-subst-char-in-string 'subst-char-in-string)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
(defun semantic-delete-overlay-maybe (overlay)
|
|
|
|
|
"Delete OVERLAY if it is a semantic token overlay."
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(if (overlay-get overlay 'semantic)
|
|
|
|
|
(delete-overlay overlay)))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
2012-10-02 02:10:29 +08:00
|
|
|
|
;;; Menu Item compatibility
|
|
|
|
|
;;
|
2019-06-20 02:29:20 +02:00
|
|
|
|
(define-obsolete-function-alias 'semantic-menu-item #'identity "27.1")
|
2012-10-02 02:10:29 +08:00
|
|
|
|
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;;; Positional Data Cache
|
|
|
|
|
;;
|
|
|
|
|
(defvar semantic-cache-data-overlays nil
|
|
|
|
|
"List of all overlays waiting to be flushed.")
|
|
|
|
|
|
|
|
|
|
(defun semantic-cache-data-to-buffer (buffer start end value name &optional lifespan)
|
|
|
|
|
"In BUFFER over the region START END, remember VALUE.
|
|
|
|
|
NAME specifies a special name that can be searched for later to
|
|
|
|
|
recover the cached data with `semantic-get-cache-data'.
|
|
|
|
|
LIFESPAN indicates how long the data cache will be remembered.
|
2015-11-18 09:17:20 -08:00
|
|
|
|
The default LIFESPAN is `end-of-command'.
|
2009-08-28 15:01:48 +00:00
|
|
|
|
Possible Lifespans are:
|
2015-09-03 15:31:12 -07:00
|
|
|
|
`end-of-command' - Remove the cache at the end of the currently
|
|
|
|
|
executing command.
|
|
|
|
|
`exit-cache-zone' - Remove when point leaves the overlay at the
|
|
|
|
|
end of the currently executing command."
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;; Check if LIFESPAN is valid before to create any overlay
|
|
|
|
|
(or lifespan (setq lifespan 'end-of-command))
|
|
|
|
|
(or (memq lifespan '(end-of-command exit-cache-zone))
|
|
|
|
|
(error "semantic-cache-data-to-buffer: Unknown LIFESPAN: %s"
|
|
|
|
|
lifespan))
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(let ((o (make-overlay start end buffer)))
|
|
|
|
|
(overlay-put o 'cache-name name)
|
|
|
|
|
(overlay-put o 'cached-value value)
|
|
|
|
|
(overlay-put o 'lifespan lifespan)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(setq semantic-cache-data-overlays
|
|
|
|
|
(cons o semantic-cache-data-overlays))
|
|
|
|
|
;;(message "Adding to cache: %s" o)
|
|
|
|
|
(add-hook 'post-command-hook 'semantic-cache-data-post-command-hook)
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defun semantic-cache-data-post-command-hook ()
|
2015-11-17 15:28:50 -08:00
|
|
|
|
"Flush `semantic-cache-data-overlays' based `lifespan' property.
|
2009-08-28 15:01:48 +00:00
|
|
|
|
Remove self from `post-command-hook' if it is empty."
|
|
|
|
|
(let ((newcache nil)
|
|
|
|
|
(oldcache semantic-cache-data-overlays))
|
|
|
|
|
(while oldcache
|
|
|
|
|
(let* ((o (car oldcache))
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(life (overlay-get o 'lifespan))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
)
|
|
|
|
|
(if (or (eq life 'end-of-command)
|
|
|
|
|
(and (eq life 'exit-cache-zone)
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(not (member o (overlays-at (point))))))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(progn
|
|
|
|
|
;;(message "Removing from cache: %s" o)
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(delete-overlay o)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
)
|
|
|
|
|
(setq newcache (cons o newcache))))
|
|
|
|
|
(setq oldcache (cdr oldcache)))
|
|
|
|
|
(setq semantic-cache-data-overlays (nreverse newcache)))
|
|
|
|
|
|
|
|
|
|
;; Remove ourselves if we have removed all overlays.
|
|
|
|
|
(unless semantic-cache-data-overlays
|
|
|
|
|
(remove-hook 'post-command-hook
|
|
|
|
|
'semantic-cache-data-post-command-hook)))
|
|
|
|
|
|
|
|
|
|
(defun semantic-get-cache-data (name &optional point)
|
|
|
|
|
"Get cached data with NAME from optional POINT."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if point (goto-char point))
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(let ((o (overlays-at (point)))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(ans nil))
|
|
|
|
|
(while (and (not ans) o)
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(if (equal (overlay-get (car o) 'cache-name) name)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(setq ans (car o))
|
|
|
|
|
(setq o (cdr o))))
|
|
|
|
|
(when ans
|
2019-06-20 03:14:11 +02:00
|
|
|
|
(overlay-get ans 'cached-value)))))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
2012-10-02 02:10:29 +08:00
|
|
|
|
(defun semantic-test-data-cache ()
|
|
|
|
|
"Test the data cache."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((data '(a b c)))
|
|
|
|
|
(save-current-buffer
|
|
|
|
|
(set-buffer (get-buffer-create " *semantic-test-data-cache*"))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert "The Moose is Loose")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(semantic-cache-data-to-buffer (current-buffer) (point) (+ (point) 5)
|
|
|
|
|
data 'moose 'exit-cache-zone)
|
|
|
|
|
(if (equal (semantic-get-cache-data 'moose) data)
|
|
|
|
|
(message "Successfully retrieved cached data.")
|
|
|
|
|
(error "Failed to retrieve cached data"))
|
|
|
|
|
))))
|
|
|
|
|
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;;; Obsoleting various functions & variables
|
|
|
|
|
;;
|
|
|
|
|
(defun semantic-overload-symbol-from-function (name)
|
|
|
|
|
"Return the symbol for overload used by NAME, the defined symbol."
|
|
|
|
|
(let ((sym-name (symbol-name name)))
|
|
|
|
|
(if (string-match "^semantic-" sym-name)
|
|
|
|
|
(intern (substring sym-name (match-end 0)))
|
|
|
|
|
name)))
|
|
|
|
|
|
2009-10-25 02:55:27 +00:00
|
|
|
|
(defun semantic-alias-obsolete (oldfnalias newfn when)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
"Make OLDFNALIAS an alias for NEWFN.
|
|
|
|
|
Mark OLDFNALIAS as obsolete, such that the byte compiler
|
|
|
|
|
will throw a warning when it encounters this symbol."
|
|
|
|
|
(defalias oldfnalias newfn)
|
2009-10-24 18:02:47 +00:00
|
|
|
|
(make-obsolete oldfnalias newfn when)
|
2019-10-24 23:06:23 -04:00
|
|
|
|
(when (and (mode-local--function-overload-p newfn)
|
|
|
|
|
(not (mode-local--overload-obsoleted-by newfn))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;; Only throw this warning when byte compiling things.
|
|
|
|
|
(boundp 'byte-compile-current-file)
|
|
|
|
|
byte-compile-current-file
|
|
|
|
|
(not (string-match "cedet" byte-compile-current-file))
|
|
|
|
|
)
|
2009-10-28 14:01:49 +00:00
|
|
|
|
(make-obsolete-overload oldfnalias newfn when)
|
2012-10-02 02:10:29 +08:00
|
|
|
|
(byte-compile-warn
|
2009-08-28 15:01:48 +00:00
|
|
|
|
"%s: `%s' obsoletes overload `%s'"
|
|
|
|
|
byte-compile-current-file
|
|
|
|
|
newfn
|
|
|
|
|
(semantic-overload-symbol-from-function oldfnalias))
|
|
|
|
|
))
|
|
|
|
|
|
2009-10-25 02:55:27 +00:00
|
|
|
|
(defun semantic-varalias-obsolete (oldvaralias newvar when)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
"Make OLDVARALIAS an alias for variable NEWVAR.
|
|
|
|
|
Mark OLDVARALIAS as obsolete, such that the byte compiler
|
|
|
|
|
will throw a warning when it encounters this symbol."
|
2009-10-24 18:02:47 +00:00
|
|
|
|
(make-obsolete-variable oldvaralias newvar when)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(defvaralias oldvaralias newvar)
|
|
|
|
|
(error
|
|
|
|
|
;; Only throw this warning when byte compiling things.
|
|
|
|
|
(when (and (boundp 'byte-compile-current-file)
|
|
|
|
|
byte-compile-current-file)
|
2012-10-02 02:10:29 +08:00
|
|
|
|
(byte-compile-warn
|
2009-08-28 15:01:48 +00:00
|
|
|
|
"variable `%s' obsoletes, but isn't alias of `%s'"
|
|
|
|
|
newvar oldvaralias)
|
|
|
|
|
))))
|
|
|
|
|
|
|
|
|
|
;;; Help debugging
|
|
|
|
|
;;
|
|
|
|
|
(defmacro semantic-safe (format &rest body)
|
|
|
|
|
"Turn into a FORMAT message any error caught during eval of BODY.
|
|
|
|
|
Return the value of last BODY form or nil if an error occurred.
|
|
|
|
|
FORMAT can have a %s escape which will be replaced with the actual
|
|
|
|
|
error message.
|
|
|
|
|
If `debug-on-error' is set, errors are not caught, so that you can
|
|
|
|
|
debug them.
|
|
|
|
|
Avoid using a large BODY since it is duplicated."
|
2015-04-10 00:17:19 -04:00
|
|
|
|
(declare (debug t) (indent 1))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
`(if debug-on-error
|
|
|
|
|
;;(let ((inhibit-quit nil)) ,@body)
|
|
|
|
|
;; Note to self: Doing the above screws up the wisent parser.
|
|
|
|
|
(progn ,@body)
|
|
|
|
|
(condition-case err
|
|
|
|
|
(progn ,@body)
|
|
|
|
|
(error
|
|
|
|
|
(message ,format (format "%S - %s" (current-buffer)
|
|
|
|
|
(error-message-string err)))
|
|
|
|
|
nil))))
|
|
|
|
|
|
|
|
|
|
;;; Misc utilities
|
|
|
|
|
;;
|
2013-09-20 13:21:28 -04:00
|
|
|
|
|
|
|
|
|
(defvar semantic-new-buffer-fcn-was-run nil
|
|
|
|
|
"Non-nil after `semantic-new-buffer-fcn' has been executed.")
|
|
|
|
|
(make-variable-buffer-local 'semantic-new-buffer-fcn-was-run)
|
|
|
|
|
|
|
|
|
|
(defsubst semantic-active-p ()
|
|
|
|
|
"Return non-nil if the current buffer was set up for parsing."
|
|
|
|
|
semantic-new-buffer-fcn-was-run)
|
|
|
|
|
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(defsubst semantic-map-buffers (function)
|
|
|
|
|
"Run FUNCTION for each Semantic enabled buffer found.
|
|
|
|
|
FUNCTION does not have arguments. When FUNCTION is entered
|
|
|
|
|
`current-buffer' is a selected Semantic enabled buffer."
|
|
|
|
|
(mode-local-map-file-buffers function #'semantic-active-p))
|
|
|
|
|
|
2009-09-28 15:15:00 +00:00
|
|
|
|
(defalias 'semantic-map-mode-buffers 'mode-local-map-mode-buffers)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
(semantic-alias-obsolete 'define-mode-overload-implementation
|
2009-10-25 02:55:27 +00:00
|
|
|
|
'define-mode-local-override "23.2")
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
2019-10-24 23:06:23 -04:00
|
|
|
|
(defun semantic-install-function-overrides (overrides &optional transient)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
"Install the function OVERRIDES in the specified environment.
|
|
|
|
|
OVERRIDES must be an alist ((OVERLOAD . FUNCTION) ...) where OVERLOAD
|
|
|
|
|
is a symbol identifying an overloadable entry, and FUNCTION is the
|
|
|
|
|
function to override it with.
|
|
|
|
|
If optional argument TRANSIENT is non-nil, installed overrides can in
|
|
|
|
|
turn be overridden by next installation.
|
|
|
|
|
If optional argument MODE is non-nil, it must be a major mode symbol.
|
|
|
|
|
OVERRIDES will be installed globally for this major mode. If MODE is
|
|
|
|
|
nil, OVERRIDES will be installed locally in the current buffer. This
|
|
|
|
|
later installation should be done in MODE hook."
|
|
|
|
|
(mode-local-bind
|
|
|
|
|
;; Add the semantic- prefix to OVERLOAD short names.
|
|
|
|
|
(mapcar
|
|
|
|
|
#'(lambda (e)
|
|
|
|
|
(let ((name (symbol-name (car e))))
|
|
|
|
|
(if (string-match "^semantic-" name)
|
|
|
|
|
e
|
|
|
|
|
(cons (intern (format "semantic-%s" name)) (cdr e)))))
|
|
|
|
|
overrides)
|
|
|
|
|
(list 'constant-flag (not transient)
|
2019-10-24 23:06:23 -04:00
|
|
|
|
'override-flag t)))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
;;; User Interrupt handling
|
|
|
|
|
;;
|
|
|
|
|
(defvar semantic-current-input-throw-symbol nil
|
|
|
|
|
"The current throw symbol for `semantic-exit-on-input'.")
|
2013-11-16 15:27:24 -05:00
|
|
|
|
(defvar semantic--on-input-start-marker nil
|
|
|
|
|
"The marker when starting a semantic-exit-on-input form.")
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
(defmacro semantic-exit-on-input (symbol &rest forms)
|
|
|
|
|
"Using SYMBOL as an argument to `throw', execute FORMS.
|
2011-11-19 23:30:16 -08:00
|
|
|
|
If FORMS includes a call to `semantic-throw-on-input', then
|
2009-08-28 15:01:48 +00:00
|
|
|
|
if a user presses any key during execution, this form macro
|
|
|
|
|
will exit with the value passed to `semantic-throw-on-input'.
|
|
|
|
|
If FORMS completes, then the return value is the same as `progn'."
|
2015-04-13 10:39:25 -04:00
|
|
|
|
(declare (indent 1) (debug def-body))
|
2013-11-16 15:27:24 -05:00
|
|
|
|
`(let ((semantic-current-input-throw-symbol ,symbol)
|
|
|
|
|
(semantic--on-input-start-marker (point-marker)))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(catch ,symbol
|
|
|
|
|
,@forms)))
|
|
|
|
|
|
|
|
|
|
(defmacro semantic-throw-on-input (from)
|
|
|
|
|
"Exit with `throw' when in `semantic-exit-on-input' on user input.
|
|
|
|
|
FROM is an indication of where this function is called from as a value
|
|
|
|
|
to pass to `throw'. It is recommended to use the name of the function
|
|
|
|
|
calling this one."
|
|
|
|
|
`(when (and semantic-current-input-throw-symbol
|
2013-11-16 15:27:24 -05:00
|
|
|
|
(or (input-pending-p)
|
2015-01-07 23:11:58 -05:00
|
|
|
|
(with-current-buffer
|
|
|
|
|
(marker-buffer semantic--on-input-start-marker)
|
2015-04-13 10:39:25 -04:00
|
|
|
|
;; Timers might run during accept-process-output.
|
|
|
|
|
;; If they redisplay, point must be where the user
|
|
|
|
|
;; expects. (Bug#15045)
|
2015-01-07 23:11:58 -05:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char semantic--on-input-start-marker)
|
|
|
|
|
(accept-process-output)))))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(throw semantic-current-input-throw-symbol ,from)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Special versions of Find File
|
|
|
|
|
;;
|
|
|
|
|
(defun semantic-find-file-noselect (file &optional nowarn rawfile wildcards)
|
|
|
|
|
"Call `find-file-noselect' with various features turned off.
|
|
|
|
|
Use this when referencing a file that will be soon deleted.
|
lisp/*.el: Fix typos and other trivial doc fixes
* lisp/allout-widgets.el (allout-widgets-auto-activation)
(allout-current-decorated-p):
* lisp/auth-source.el (auth-source-protocols):
* lisp/autorevert.el (auto-revert-set-timer):
* lisp/battery.el (battery-mode-line-limit):
* lisp/calc/calcalg3.el (math-map-binop):
* lisp/calendar/cal-dst.el (calendar-dst-find-startend):
* lisp/calendar/cal-mayan.el (calendar-mayan-long-count-to-absolute):
* lisp/calendar/calendar.el (calendar-date-echo-text)
(calendar-generate-month, calendar-string-spread)
(calendar-cursor-to-date, calendar-read, calendar-read-date)
(calendar-mark-visible-date, calendar-dayname-on-or-before):
* lisp/calendar/diary-lib.el (diary-ordinal-suffix):
* lisp/cedet/ede/autoconf-edit.el (autoconf-new-program)
(autoconf-find-last-macro, autoconf-parameter-strip):
* lisp/cedet/ede/config.el (ede-target-with-config-build):
* lisp/cedet/ede/linux.el (ede-linux--detect-architecture)
(ede-linux--get-architecture):
* lisp/cedet/semantic/complete.el (semantic-collector-calculate-cache)
(semantic-displayer-abstract, semantic-displayer-point-position):
* lisp/cedet/semantic/format.el (semantic-format-face-alist)
(semantic-format-tag-short-doc):
* lisp/cedet/semantic/fw.el (semantic-find-file-noselect):
* lisp/cedet/semantic/idle.el (semantic-idle-scheduler-work-idle-time)
(semantic-idle-breadcrumbs-display-function)
(semantic-idle-breadcrumbs-format-tag-list-function):
* lisp/cedet/semantic/lex.el (semantic-lex-map-types)
(define-lex, define-lex-block-type-analyzer):
* lisp/cedet/semantic/senator.el (senator-search-default-tag-filter):
* lisp/cedet/semantic/symref.el (semantic-symref-result)
(semantic-symref-hit-to-tag-via-db):
* lisp/cedet/semantic/symref.el (semantic-symref-tool-baseclass):
* lisp/cedet/semantic/tag.el (semantic-tag-new-variable)
(semantic-tag-new-include, semantic-tag-new-package)
(semantic-tag-set-faux, semantic-create-tag-proxy)
(semantic-tag-function-parent)
(semantic-tag-components-with-overlays):
* lisp/cedet/srecode/cpp.el (srecode-cpp-namespaces)
(srecode-semantic-handle-:c, srecode-semantic-apply-tag-to-dict):
* lisp/cedet/srecode/dictionary.el (srecode-create-dictionary)
(srecode-dictionary-add-entries, srecode-dictionary-lookup-name)
(srecode-create-dictionaries-from-tags):
* lisp/cmuscheme.el (scheme-compile-region):
* lisp/color.el (color-lab-to-lch):
* lisp/doc-view.el (doc-view-image-width)
(doc-view-set-up-single-converter):
* lisp/dynamic-setting.el (font-setting-change-default-font)
(dynamic-setting-handle-config-changed-event):
* lisp/elec-pair.el (electric-pair-text-pairs)
(electric-pair-skip-whitespace-function)
(electric-pair-string-bound-function):
* lisp/emacs-lisp/avl-tree.el (avl-tree--del-balance)
(avl-tree-member, avl-tree-mapcar, avl-tree-iter):
* lisp/emacs-lisp/bytecomp.el (byte-compile-generate-call-tree):
* lisp/emacs-lisp/checkdoc.el (checkdoc-autofix-flag)
(checkdoc-spellcheck-documentation-flag, checkdoc-ispell)
(checkdoc-ispell-current-buffer, checkdoc-ispell-interactive)
(checkdoc-ispell-message-interactive)
(checkdoc-ispell-message-text, checkdoc-ispell-start)
(checkdoc-ispell-continue, checkdoc-ispell-comments)
(checkdoc-ispell-defun):
* lisp/emacs-lisp/cl-generic.el (cl--generic-search-method):
* lisp/emacs-lisp/eieio-custom.el (eieio-read-customization-group):
* lisp/emacs-lisp/lisp.el (forward-sexp, up-list):
* lisp/emacs-lisp/package-x.el (package--archive-contents-from-file):
* lisp/emacs-lisp/package.el (package-desc)
(package--make-autoloads-and-stuff, package-hidden-regexps):
* lisp/emacs-lisp/tcover-ses.el (ses-exercise-startup):
* lisp/emacs-lisp/testcover.el (testcover-nohits)
(testcover-1value):
* lisp/epg.el (epg-receive-keys, epg-start-edit-key):
* lisp/erc/erc-backend.el (erc-server-processing-p)
(erc-split-line-length, erc-server-coding-system)
(erc-server-send, erc-message):
* lisp/erc/erc-button.el (erc-button-face, erc-button-alist)
(erc-browse-emacswiki):
* lisp/erc/erc-ezbounce.el (erc-ezbounce, erc-ezb-get-login):
* lisp/erc/erc-fill.el (erc-fill-variable-maximum-indentation):
* lisp/erc/erc-log.el (erc-current-logfile):
* lisp/erc/erc-match.el (erc-log-match-format)
(erc-text-matched-hook):
* lisp/erc/erc-netsplit.el (erc-netsplit, erc-netsplit-debug):
* lisp/erc/erc-networks.el (erc-server-alist)
(erc-networks-alist, erc-current-network):
* lisp/erc/erc-ring.el (erc-input-ring-index):
* lisp/erc/erc-speedbar.el (erc-speedbar)
(erc-speedbar-update-channel):
* lisp/erc/erc-stamp.el (erc-timestamp-only-if-changed-flag):
* lisp/erc/erc-track.el (erc-track-position-in-mode-line)
(erc-track-remove-from-mode-line, erc-modified-channels-update)
(erc-track-last-non-erc-buffer, erc-track-sort-by-importance)
(erc-track-get-active-buffer):
* lisp/erc/erc.el (erc-get-channel-user-list)
(erc-echo-notice-hook, erc-echo-notice-always-hook)
(erc-wash-quit-reason, erc-format-@nick):
* lisp/ffap.el (ffap-latex-mode):
* lisp/files.el (abort-if-file-too-large)
(dir-locals--get-sort-score, buffer-stale--default-function):
* lisp/filesets.el (filesets-tree-max-level, filesets-data)
(filesets-update-pre010505):
* lisp/gnus/gnus-agent.el (gnus-agent-flush-cache):
* lisp/gnus/gnus-art.el (gnus-article-encrypt-protocol)
(gnus-button-prefer-mid-or-mail):
* lisp/gnus/gnus-cus.el (gnus-group-parameters):
* lisp/gnus/gnus-demon.el (gnus-demon-handlers)
(gnus-demon-run-callback):
* lisp/gnus/gnus-dired.el (gnus-dired-print):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-buffer):
* lisp/gnus/gnus-range.el (gnus-range-normalize):
* lisp/gnus/gnus-spec.el (gnus-pad-form):
* lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud)
(gnus-server-opened, gnus-server-closed, gnus-server-denied)
(gnus-server-offline):
* lisp/gnus/gnus-sum.el (gnus-refer-thread-use-nnir)
(gnus-refer-thread-limit-to-thread)
(gnus-summary-limit-include-thread, gnus-summary-refer-thread)
(gnus-summary-find-matching):
* lisp/gnus/gnus-util.el (gnus-rescale-image):
* lisp/gnus/gnus.el (gnus-summary-line-format, gnus-no-server):
* lisp/gnus/mail-source.el (mail-source-incoming-file-prefix):
* lisp/gnus/message.el (message-cite-reply-position)
(message-cite-style-outlook, message-cite-style-thunderbird)
(message-cite-style-gmail, message--send-mail-maybe-partially):
* lisp/gnus/mm-extern.el (mm-inline-external-body):
* lisp/gnus/mm-partial.el (mm-inline-partial):
* lisp/gnus/mml-sec.el (mml-secure-message-sign)
(mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
* lisp/gnus/mml2015.el (mml2015-epg-key-image)
(mml2015-epg-key-image-to-string):
* lisp/gnus/nndiary.el (nndiary-reminders, nndiary-get-new-mail):
* lisp/gnus/nnheader.el (nnheader-directory-files-is-safe):
* lisp/gnus/nnir.el (nnir-search-history)
(nnir-imap-search-other, nnir-artlist-length)
(nnir-artlist-article, nnir-artitem-group, nnir-artitem-number)
(nnir-artitem-rsv, nnir-article-group, nnir-article-number)
(nnir-article-rsv, nnir-article-ids, nnir-categorize)
(nnir-retrieve-headers-override-function)
(nnir-imap-default-search-key, nnir-hyrex-additional-switches)
(gnus-group-make-nnir-group, nnir-run-namazu, nnir-read-parms)
(nnir-read-parm, nnir-read-server-parm, nnir-search-thread):
* lisp/gnus/nnmairix.el (nnmairix-default-group)
(nnmairix-propagate-marks):
* lisp/gnus/smime.el (smime-keys, smime-crl-check)
(smime-verify-buffer, smime-noverify-buffer):
* lisp/gnus/spam-report.el (spam-report-url-ping-mm-url):
* lisp/gnus/spam.el (spam-spamassassin-positive-spam-flag-header)
(spam-spamassassin-spam-status-header, spam-sa-learn-rebuild)
(spam-classifications, spam-check-stat, spam-spamassassin-score):
* lisp/help.el (describe-minor-mode-from-symbol):
* lisp/hippie-exp.el (hippie-expand-ignore-buffers):
* lisp/htmlfontify.el (hfy-optimizations, hfy-face-resolve-face)
(hfy-begin-span):
* lisp/ibuf-ext.el (ibuffer-update-saved-filters-format)
(ibuffer-saved-filters, ibuffer-old-saved-filters-warning)
(ibuffer-filtering-qualifiers, ibuffer-repair-saved-filters)
(eval, ibuffer-unary-operand, file-extension, directory):
* lisp/image-dired.el (image-dired-cmd-pngcrush-options):
* lisp/image-mode.el (image-toggle-display):
* lisp/international/ccl.el (ccl-compile-read-multibyte-character)
(ccl-compile-write-multibyte-character):
* lisp/international/kkc.el (kkc-save-init-file):
* lisp/international/latin1-disp.el (latin1-display):
* lisp/international/ogonek.el (ogonek-name-encoding-alist)
(ogonek-information, ogonek-lookup-encoding)
(ogonek-deprefixify-region):
* lisp/isearch.el (isearch-filter-predicate)
(isearch--momentary-message):
* lisp/jsonrpc.el (jsonrpc-connection-send)
(jsonrpc-process-connection, jsonrpc-shutdown)
(jsonrpc--async-request-1):
* lisp/language/tibet-util.el (tibetan-char-p):
* lisp/mail/feedmail.el (feedmail-queue-use-send-time-for-date)
(feedmail-last-chance-hook, feedmail-before-fcc-hook)
(feedmail-send-it-immediately-wrapper, feedmail-find-eoh):
* lisp/mail/hashcash.el (hashcash-generate-payment)
(hashcash-generate-payment-async, hashcash-insert-payment)
(hashcash-verify-payment):
* lisp/mail/rmail.el (rmail-movemail-variant-in-use)
(rmail-get-attr-value):
* lisp/mail/rmailmm.el (rmail-mime-prefer-html, rmail-mime):
* lisp/mail/rmailsum.el (rmail-summary-show-message):
* lisp/mail/supercite.el (sc-raw-mode-toggle):
* lisp/man.el (Man-start-calling):
* lisp/mh-e/mh-acros.el (mh-do-at-event-location)
(mh-iterate-on-messages-in-region, mh-iterate-on-range):
* lisp/mh-e/mh-alias.el (mh-alias-system-aliases)
(mh-alias-reload, mh-alias-ali)
(mh-alias-canonicalize-suggestion, mh-alias-add-alias-to-file)
(mh-alias-add-alias):
* lisp/mouse.el (mouse-save-then-kill):
* lisp/net/browse-url.el (browse-url-default-macosx-browser):
* lisp/net/eudc.el (eudc-set, eudc-variable-protocol-value)
(eudc-variable-server-value, eudc-update-variable)
(eudc-expand-inline):
* lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
* lisp/net/eudcb-ldap.el (eudc-ldap-get-field-list):
* lisp/net/pop3.el (pop3-list):
* lisp/net/soap-client.el (soap-namespace-put)
(soap-xs-parse-sequence, soap-parse-envelope):
* lisp/net/soap-inspect.el (soap-inspect-xs-complex-type):
* lisp/nxml/rng-xsd.el (rng-xsd-date-to-days):
* lisp/org/ob-C.el (org-babel-prep-session:C)
(org-babel-load-session:C):
* lisp/org/ob-J.el (org-babel-execute:J):
* lisp/org/ob-asymptote.el (org-babel-prep-session:asymptote):
* lisp/org/ob-awk.el (org-babel-execute:awk):
* lisp/org/ob-core.el (org-babel-process-file-name):
* lisp/org/ob-ebnf.el (org-babel-execute:ebnf):
* lisp/org/ob-forth.el (org-babel-execute:forth):
* lisp/org/ob-fortran.el (org-babel-execute:fortran)
(org-babel-prep-session:fortran, org-babel-load-session:fortran):
* lisp/org/ob-groovy.el (org-babel-execute:groovy):
* lisp/org/ob-io.el (org-babel-execute:io):
* lisp/org/ob-js.el (org-babel-execute:js):
* lisp/org/ob-lilypond.el (org-babel-default-header-args:lilypond)
(org-babel-lilypond-compile-post-tangle)
(org-babel-lilypond-display-pdf-post-tangle)
(org-babel-lilypond-tangle)
(org-babel-lilypond-execute-tangled-ly)
(org-babel-lilypond-compile-lilyfile)
(org-babel-lilypond-check-for-compile-error)
(org-babel-lilypond-process-compile-error)
(org-babel-lilypond-mark-error-line)
(org-babel-lilypond-parse-error-line)
(org-babel-lilypond-attempt-to-open-pdf)
(org-babel-lilypond-attempt-to-play-midi)
(org-babel-lilypond-switch-extension)
(org-babel-lilypond-set-header-args):
* lisp/org/ob-lua.el (org-babel-prep-session:lua):
* lisp/org/ob-picolisp.el (org-babel-execute:picolisp):
* lisp/org/ob-processing.el (org-babel-prep-session:processing):
* lisp/org/ob-python.el (org-babel-prep-session:python):
* lisp/org/ob-scheme.el (org-babel-scheme-capture-current-message)
(org-babel-scheme-execute-with-geiser, org-babel-execute:scheme):
* lisp/org/ob-shen.el (org-babel-execute:shen):
* lisp/org/org-agenda.el (org-agenda-entry-types)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-time-grid, org-agenda-sorting-strategy)
(org-agenda-filter-by-category, org-agenda-forward-block):
* lisp/org/org-colview.el (org-columns--overlay-text):
* lisp/org/org-faces.el (org-verbatim, org-cycle-level-faces):
* lisp/org/org-indent.el (org-indent-set-line-properties):
* lisp/org/org-macs.el (org-get-limited-outline-regexp):
* lisp/org/org-mobile.el (org-mobile-files):
* lisp/org/org.el (org-use-fast-todo-selection)
(org-extend-today-until, org-use-property-inheritance)
(org-refresh-effort-properties, org-open-at-point-global)
(org-track-ordered-property-with-tag, org-shiftright):
* lisp/org/ox-html.el (org-html-checkbox-type):
* lisp/org/ox-man.el (org-man-source-highlight)
(org-man-verse-block):
* lisp/org/ox-publish.el (org-publish-sitemap-default):
* lisp/outline.el (outline-head-from-level):
* lisp/progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-calc-command-indent, dcl-indent-to):
* lisp/progmodes/flymake.el (flymake-make-diagnostic)
(flymake--overlays, flymake-diagnostic-functions)
(flymake-diagnostic-types-alist, flymake--backend-state)
(flymake-is-running, flymake--collect, flymake-mode):
* lisp/progmodes/gdb-mi.el (gdb-threads-list, gdb, gdb-non-stop)
(gdb-buffers, gdb-gud-context-call, gdb-jsonify-buffer):
* lisp/progmodes/grep.el (grep-error-screen-columns):
* lisp/progmodes/gud.el (gud-prev-expr):
* lisp/progmodes/ps-mode.el (ps-mode, ps-mode-target-column)
(ps-run-goto-error):
* lisp/progmodes/python.el (python-eldoc-get-doc)
(python-eldoc-function-timeout-permanent, python-eldoc-function):
* lisp/shadowfile.el (shadow-make-group):
* lisp/speedbar.el (speedbar-obj-do-check):
* lisp/textmodes/flyspell.el (flyspell-auto-correct-previous-hook):
* lisp/textmodes/reftex-cite.el (reftex-bib-or-thebib):
* lisp/textmodes/reftex-index.el (reftex-index-goto-entry)
(reftex-index-kill, reftex-index-undo):
* lisp/textmodes/reftex-parse.el (reftex-context-substring):
* lisp/textmodes/reftex.el (reftex-TeX-master-file):
* lisp/textmodes/rst.el (rst-next-hdr, rst-toc)
(rst-uncomment-region, rst-font-lock-extend-region-internal):
* lisp/thumbs.el (thumbs-mode):
* lisp/vc/ediff-util.el (ediff-restore-diff):
* lisp/vc/pcvs-defs.el (cvs-cvsroot, cvs-force-dir-tag):
* lisp/vc/vc-hg.el (vc-hg--ignore-patterns-valid-p):
* lisp/wid-edit.el (widget-field-value-set, string):
* lisp/x-dnd.el (x-dnd-version-from-flags)
(x-dnd-more-than-3-from-flags): Assorted docfixes.
2019-09-21 00:27:53 +02:00
|
|
|
|
FILE, NOWARN, RAWFILE, and WILDCARDS are passed into `find-file-noselect'."
|
2012-10-02 02:10:29 +08:00
|
|
|
|
;; Hack -
|
|
|
|
|
;; Check if we are in set-auto-mode, and if so, warn about this.
|
2019-06-20 02:29:20 +02:00
|
|
|
|
(when (boundp 'keep-mode-if-same)
|
2012-10-02 02:10:29 +08:00
|
|
|
|
(let ((filename (or (and (boundp 'filename) filename)
|
|
|
|
|
"(unknown)")))
|
|
|
|
|
(message "WARNING: semantic-find-file-noselect called for \
|
|
|
|
|
%s while in set-auto-mode for %s. You should call the responsible function \
|
|
|
|
|
into `mode-local-init-hook'." file filename)
|
|
|
|
|
(sit-for 1)))
|
|
|
|
|
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(let* ((recentf-exclude '( (lambda (f) t) ))
|
|
|
|
|
;; This is a brave statement. Don't waste time loading in
|
|
|
|
|
;; lots of modes. Especially decoration mode can waste a lot
|
|
|
|
|
;; of time for a buffer we intend to kill.
|
2009-09-26 17:47:11 +00:00
|
|
|
|
(semantic-init-hook nil)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;; This disables the part of EDE that asks questions
|
|
|
|
|
(ede-auto-add-method 'never)
|
|
|
|
|
;; Ask font-lock to not colorize these buffers, nor to
|
|
|
|
|
;; whine about it either.
|
2012-10-02 02:10:29 +08:00
|
|
|
|
(global-font-lock-mode nil)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
(font-lock-verbose nil)
|
2012-10-02 02:10:29 +08:00
|
|
|
|
;; This forces flymake to ignore this buffer on find-file, and
|
|
|
|
|
;; prevents flymake processes from being started.
|
|
|
|
|
(flymake-start-syntax-check-on-find-file nil)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;; Disable revision control
|
|
|
|
|
(vc-handled-backends nil)
|
|
|
|
|
;; Don't prompt to insert a template if we visit an empty file
|
|
|
|
|
(auto-insert nil)
|
|
|
|
|
;; We don't want emacs to query about unsafe local variables
|
2012-11-14 21:20:20 +01:00
|
|
|
|
(enable-local-variables :safe)
|
2009-08-28 15:01:48 +00:00
|
|
|
|
;; ... or eval variables
|
|
|
|
|
(enable-local-eval nil)
|
|
|
|
|
)
|
2009-09-19 17:25:30 +00:00
|
|
|
|
(save-match-data
|
2019-06-20 02:29:20 +02:00
|
|
|
|
(find-file-noselect file nowarn rawfile wildcards))))
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
Synch Semantic to CEDET 1.0.
Move CEDET ChangeLog entries to new file lisp/cedet/ChangeLog.
* semantic.el (semantic-version): Update to 2.0.
(semantic-mode-map): Add "," and "m" bindings.
(navigate-menu): Update.
* semantic/symref.el (semantic-symref-calculate-rootdir):
New function.
(semantic-symref-detect-symref-tool): Use it.
* semantic/symref/grep.el (semantic-symref-grep-shell): New var.
(semantic-symref-perform-search): Use it. Calculate root dir with
semantic-symref-calculate-rootdir.
(semantic-symref-derive-find-filepatterns): Improve error message.
* semantic/symref/list.el
(semantic-symref-results-mode-map): New bindings.
(semantic-symref-auto-expand-results): New option.
(semantic-symref-results-dump): Obey auto-expand.
(semantic-symref-list-expand-all, semantic-symref-regexp)
(semantic-symref-list-contract-all)
(semantic-symref-list-map-open-hits)
(semantic-symref-list-update-open-hits)
(semantic-symref-list-create-macro-on-open-hit)
(semantic-symref-list-call-macro-on-open-hits): New functions.
(semantic-symref-list-menu-entries)
(semantic-symref-list-menu): New vars.
(semantic-symref-list-map-open-hits): Move cursor to beginning of
match before calling the mapped function.
* semantic/doc.el
(semantic-documentation-comment-preceeding-tag): Do nothing if the
mode doesn't provide comment-start-skip.
* semantic/scope.el
(semantic-analyze-scope-nested-tags-default): Strip duplicates.
(semantic-analyze-scoped-inherited-tag-map): Take the tag we are
looking for as part of the scoped tags list.
* semantic/html.el (semantic-default-html-setup): Add
senator-step-at-tag-classes.
* semantic/decorate/include.el
(semantic-decoration-on-unknown-includes): Change light bgcolor.
(semantic-decoration-on-includes-highlight-default): Check that
the include tag has a postion.
* semantic/complete.el (semantic-collector-local-members):
(semantic-complete-read-tag-local-members)
(semantic-complete-jump-local-members): New class and functions.
(semantic-complete-self-insert): Save excursion before completing.
* semantic/analyze/complete.el
(semantic-analyze-possible-completions-default): If no completions
are found, return the raw by-name-only completion list. Add FLAGS
arguments. Add support for 'no-tc (type constraint) and
'no-unique, or no stripping duplicates.
(semantic-analyze-possible-completions-default): Add FLAGS arg.
* semantic/util-modes.el
(semantic-stickyfunc-show-only-functions-p): New option.
(semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
the very first line in a buffer.
* semantic/util.el (semantic-hack-search)
(semantic-recursive-find-nonterminal-by-name)
(semantic-current-tag-interactive): Deleted.
(semantic-describe-buffer): Fix expand-nonterminal. Add
lex-syntax-mods, type relation separator char, and command
separation char.
(semantic-sanity-check): Only message if called interactively.
* semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
:filename property and the tag position.
* semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
Add recursion limit.
* semantic/imenu.el (semantic-imenu-bucketize-type-members):
Make this buffer local, not the obsoleted variable.
* semantic/idle.el: Add breadcrumbs support.
(semantic-idle-summary-current-symbol-info-default)
(semantic-idle-tag-highlight)
(semantic-idle-completion-list-default): Use
semanticdb-without-unloaded-file-searches for speed, and to
conform to the controls that specify if the idle timer is supposed
to be parsing unparsed includes.
(semantic-idle-symbol-highlight-face)
(semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
Callers changed.
(semantic-idle-work-parse-neighboring-files-flag): Default to nil.
(semantic-idle-work-update-headers-flag): New var.
(semantic-idle-work-for-one-buffer): Use it.
(semantic-idle-local-symbol-highlight): Rename from
semantic-idle-tag-highlight.
(semantic-idle-truncate-long-summaries): New option.
* semantic/ia.el (semantic-ia-cache)
(semantic-ia-get-completions): Deleted. Callers changed.
(semantic-ia-show-variants): New command.
(semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
(semantic-ia-show-summary): If there isn't anything to show, say so.
* semantic/grammar.el (semantic-grammar-create-package):
Save the buffer even in batch mode.
* semantic/fw.el
(semanticdb-without-unloaded-file-searches): New macro.
* semantic/dep.el (semantic-dependency-find-file-on-path):
Fix case dereferencing ede-object when it is a list.
* semantic/db-typecache.el (semanticdb-expand-nested-tag)
(semanticdb-typecache-faux-namespace): New functions.
(semanticdb-typecache-file-tags)
(semanticdb-typecache-merge-streams): Use them.
(semanticdb-typecache-file-tags): When deriving tags from a file,
give the mode a chance to monkey with the tag copy.
(semanticdb-typecache-find-default): Wrap find in save-excursion.
(semanticdb-typecache-find-by-name-helper): Merge found names down.
* semantic/db-global.el
(semanticdb-enable-gnu-global-in-buffer): Don't show messages if
GNU Global is not available and we don't want to throw an error.
* semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
When trying to normalize the tag to a buffer, don't error if
set-buffer method doesn't exist.
* semantic/db-file.el (semanticdb-save-db): Simplify msg.
* semantic/db.el (semanticdb-refresh-table): If forcing a
refresh on a file not in a buffer, use semantic-find-file-noselect
and delete the buffer after use.
(semanticdb-current-database-list): When calculating root via
hooks, force it through true-filename and skip the list of
possible roots.
* semantic/ctxt.el (semantic-ctxt-imported-packages): New.
* semantic/analyze/debug.el
(semantic-analyzer-debug-insert-tag): Reset standard output to
current buffer.
(semantic-analyzer-debug-global-symbol)
(semantic-analyzer-debug-missing-innertype): Change "prefix" to
"symbol" in messages.
* semantic/analyze/refs.el: (semantic-analyze-refs-impl)
(semantic-analyze-refs-proto): When calculating value, make sure
the found tag is 'similar' to the originating tag.
(semantic--analyze-refs-find-tags-with-parent): Attempt to
identify matches via imported symbols of parents.
(semantic--analyze-refs-full-lookup-with-parents): Do a deep
search during the brute search.
* semantic/analyze.el
(semantic-analyze-find-tag-sequence-default): Be robust to
calculated scopes being nil.
* semantic/bovine/c.el (semantic-c-describe-environment): Add
project macro symbol array.
(semantic-c-parse-lexical-token): Add recursion limit.
(semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
New overrides.
(semantic-expand-c-tag-namelist): Split a full type from a typedef
out to its own tag.
(semantic-expand-c-tag-namelist): Do not split out a typedef'd
inline type if it is an anonymous type.
(semantic-c-reconstitute-token): Use the optional initializers as
a clue that some function is probably a constructor. When
defining the type of these constructors, split the parent name,
and use only the class part, if applicable.
* semantic/bovine/c-by.el:
* semantic/wisent/python-wy.el: Regenerate.
2010-09-18 22:49:54 -04:00
|
|
|
|
;;; Database restriction settings
|
|
|
|
|
;;
|
|
|
|
|
(defmacro semanticdb-without-unloaded-file-searches (forms)
|
|
|
|
|
"Execute FORMS with `unloaded' removed from the current throttle."
|
2015-04-13 10:39:25 -04:00
|
|
|
|
(declare (indent 1))
|
Synch Semantic to CEDET 1.0.
Move CEDET ChangeLog entries to new file lisp/cedet/ChangeLog.
* semantic.el (semantic-version): Update to 2.0.
(semantic-mode-map): Add "," and "m" bindings.
(navigate-menu): Update.
* semantic/symref.el (semantic-symref-calculate-rootdir):
New function.
(semantic-symref-detect-symref-tool): Use it.
* semantic/symref/grep.el (semantic-symref-grep-shell): New var.
(semantic-symref-perform-search): Use it. Calculate root dir with
semantic-symref-calculate-rootdir.
(semantic-symref-derive-find-filepatterns): Improve error message.
* semantic/symref/list.el
(semantic-symref-results-mode-map): New bindings.
(semantic-symref-auto-expand-results): New option.
(semantic-symref-results-dump): Obey auto-expand.
(semantic-symref-list-expand-all, semantic-symref-regexp)
(semantic-symref-list-contract-all)
(semantic-symref-list-map-open-hits)
(semantic-symref-list-update-open-hits)
(semantic-symref-list-create-macro-on-open-hit)
(semantic-symref-list-call-macro-on-open-hits): New functions.
(semantic-symref-list-menu-entries)
(semantic-symref-list-menu): New vars.
(semantic-symref-list-map-open-hits): Move cursor to beginning of
match before calling the mapped function.
* semantic/doc.el
(semantic-documentation-comment-preceeding-tag): Do nothing if the
mode doesn't provide comment-start-skip.
* semantic/scope.el
(semantic-analyze-scope-nested-tags-default): Strip duplicates.
(semantic-analyze-scoped-inherited-tag-map): Take the tag we are
looking for as part of the scoped tags list.
* semantic/html.el (semantic-default-html-setup): Add
senator-step-at-tag-classes.
* semantic/decorate/include.el
(semantic-decoration-on-unknown-includes): Change light bgcolor.
(semantic-decoration-on-includes-highlight-default): Check that
the include tag has a postion.
* semantic/complete.el (semantic-collector-local-members):
(semantic-complete-read-tag-local-members)
(semantic-complete-jump-local-members): New class and functions.
(semantic-complete-self-insert): Save excursion before completing.
* semantic/analyze/complete.el
(semantic-analyze-possible-completions-default): If no completions
are found, return the raw by-name-only completion list. Add FLAGS
arguments. Add support for 'no-tc (type constraint) and
'no-unique, or no stripping duplicates.
(semantic-analyze-possible-completions-default): Add FLAGS arg.
* semantic/util-modes.el
(semantic-stickyfunc-show-only-functions-p): New option.
(semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
the very first line in a buffer.
* semantic/util.el (semantic-hack-search)
(semantic-recursive-find-nonterminal-by-name)
(semantic-current-tag-interactive): Deleted.
(semantic-describe-buffer): Fix expand-nonterminal. Add
lex-syntax-mods, type relation separator char, and command
separation char.
(semantic-sanity-check): Only message if called interactively.
* semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
:filename property and the tag position.
* semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
Add recursion limit.
* semantic/imenu.el (semantic-imenu-bucketize-type-members):
Make this buffer local, not the obsoleted variable.
* semantic/idle.el: Add breadcrumbs support.
(semantic-idle-summary-current-symbol-info-default)
(semantic-idle-tag-highlight)
(semantic-idle-completion-list-default): Use
semanticdb-without-unloaded-file-searches for speed, and to
conform to the controls that specify if the idle timer is supposed
to be parsing unparsed includes.
(semantic-idle-symbol-highlight-face)
(semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
Callers changed.
(semantic-idle-work-parse-neighboring-files-flag): Default to nil.
(semantic-idle-work-update-headers-flag): New var.
(semantic-idle-work-for-one-buffer): Use it.
(semantic-idle-local-symbol-highlight): Rename from
semantic-idle-tag-highlight.
(semantic-idle-truncate-long-summaries): New option.
* semantic/ia.el (semantic-ia-cache)
(semantic-ia-get-completions): Deleted. Callers changed.
(semantic-ia-show-variants): New command.
(semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
(semantic-ia-show-summary): If there isn't anything to show, say so.
* semantic/grammar.el (semantic-grammar-create-package):
Save the buffer even in batch mode.
* semantic/fw.el
(semanticdb-without-unloaded-file-searches): New macro.
* semantic/dep.el (semantic-dependency-find-file-on-path):
Fix case dereferencing ede-object when it is a list.
* semantic/db-typecache.el (semanticdb-expand-nested-tag)
(semanticdb-typecache-faux-namespace): New functions.
(semanticdb-typecache-file-tags)
(semanticdb-typecache-merge-streams): Use them.
(semanticdb-typecache-file-tags): When deriving tags from a file,
give the mode a chance to monkey with the tag copy.
(semanticdb-typecache-find-default): Wrap find in save-excursion.
(semanticdb-typecache-find-by-name-helper): Merge found names down.
* semantic/db-global.el
(semanticdb-enable-gnu-global-in-buffer): Don't show messages if
GNU Global is not available and we don't want to throw an error.
* semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
When trying to normalize the tag to a buffer, don't error if
set-buffer method doesn't exist.
* semantic/db-file.el (semanticdb-save-db): Simplify msg.
* semantic/db.el (semanticdb-refresh-table): If forcing a
refresh on a file not in a buffer, use semantic-find-file-noselect
and delete the buffer after use.
(semanticdb-current-database-list): When calculating root via
hooks, force it through true-filename and skip the list of
possible roots.
* semantic/ctxt.el (semantic-ctxt-imported-packages): New.
* semantic/analyze/debug.el
(semantic-analyzer-debug-insert-tag): Reset standard output to
current buffer.
(semantic-analyzer-debug-global-symbol)
(semantic-analyzer-debug-missing-innertype): Change "prefix" to
"symbol" in messages.
* semantic/analyze/refs.el: (semantic-analyze-refs-impl)
(semantic-analyze-refs-proto): When calculating value, make sure
the found tag is 'similar' to the originating tag.
(semantic--analyze-refs-find-tags-with-parent): Attempt to
identify matches via imported symbols of parents.
(semantic--analyze-refs-full-lookup-with-parents): Do a deep
search during the brute search.
* semantic/analyze.el
(semantic-analyze-find-tag-sequence-default): Be robust to
calculated scopes being nil.
* semantic/bovine/c.el (semantic-c-describe-environment): Add
project macro symbol array.
(semantic-c-parse-lexical-token): Add recursion limit.
(semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
New overrides.
(semantic-expand-c-tag-namelist): Split a full type from a typedef
out to its own tag.
(semantic-expand-c-tag-namelist): Do not split out a typedef'd
inline type if it is an anonymous type.
(semantic-c-reconstitute-token): Use the optional initializers as
a clue that some function is probably a constructor. When
defining the type of these constructors, split the parent name,
and use only the class part, if applicable.
* semantic/bovine/c-by.el:
* semantic/wisent/python-wy.el: Regenerate.
2010-09-18 22:49:54 -04:00
|
|
|
|
`(let ((semanticdb-find-default-throttle
|
2010-09-29 12:09:21 -04:00
|
|
|
|
(if (featurep 'semantic/db-find)
|
Synch Semantic to CEDET 1.0.
Move CEDET ChangeLog entries to new file lisp/cedet/ChangeLog.
* semantic.el (semantic-version): Update to 2.0.
(semantic-mode-map): Add "," and "m" bindings.
(navigate-menu): Update.
* semantic/symref.el (semantic-symref-calculate-rootdir):
New function.
(semantic-symref-detect-symref-tool): Use it.
* semantic/symref/grep.el (semantic-symref-grep-shell): New var.
(semantic-symref-perform-search): Use it. Calculate root dir with
semantic-symref-calculate-rootdir.
(semantic-symref-derive-find-filepatterns): Improve error message.
* semantic/symref/list.el
(semantic-symref-results-mode-map): New bindings.
(semantic-symref-auto-expand-results): New option.
(semantic-symref-results-dump): Obey auto-expand.
(semantic-symref-list-expand-all, semantic-symref-regexp)
(semantic-symref-list-contract-all)
(semantic-symref-list-map-open-hits)
(semantic-symref-list-update-open-hits)
(semantic-symref-list-create-macro-on-open-hit)
(semantic-symref-list-call-macro-on-open-hits): New functions.
(semantic-symref-list-menu-entries)
(semantic-symref-list-menu): New vars.
(semantic-symref-list-map-open-hits): Move cursor to beginning of
match before calling the mapped function.
* semantic/doc.el
(semantic-documentation-comment-preceeding-tag): Do nothing if the
mode doesn't provide comment-start-skip.
* semantic/scope.el
(semantic-analyze-scope-nested-tags-default): Strip duplicates.
(semantic-analyze-scoped-inherited-tag-map): Take the tag we are
looking for as part of the scoped tags list.
* semantic/html.el (semantic-default-html-setup): Add
senator-step-at-tag-classes.
* semantic/decorate/include.el
(semantic-decoration-on-unknown-includes): Change light bgcolor.
(semantic-decoration-on-includes-highlight-default): Check that
the include tag has a postion.
* semantic/complete.el (semantic-collector-local-members):
(semantic-complete-read-tag-local-members)
(semantic-complete-jump-local-members): New class and functions.
(semantic-complete-self-insert): Save excursion before completing.
* semantic/analyze/complete.el
(semantic-analyze-possible-completions-default): If no completions
are found, return the raw by-name-only completion list. Add FLAGS
arguments. Add support for 'no-tc (type constraint) and
'no-unique, or no stripping duplicates.
(semantic-analyze-possible-completions-default): Add FLAGS arg.
* semantic/util-modes.el
(semantic-stickyfunc-show-only-functions-p): New option.
(semantic-stickyfunc-fetch-stickyline): Don't show stickytext for
the very first line in a buffer.
* semantic/util.el (semantic-hack-search)
(semantic-recursive-find-nonterminal-by-name)
(semantic-current-tag-interactive): Deleted.
(semantic-describe-buffer): Fix expand-nonterminal. Add
lex-syntax-mods, type relation separator char, and command
separation char.
(semantic-sanity-check): Only message if called interactively.
* semantic/tag.el (semantic-tag-deep-copy-one-tag): Copy the
:filename property and the tag position.
* semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
Add recursion limit.
* semantic/imenu.el (semantic-imenu-bucketize-type-members):
Make this buffer local, not the obsoleted variable.
* semantic/idle.el: Add breadcrumbs support.
(semantic-idle-summary-current-symbol-info-default)
(semantic-idle-tag-highlight)
(semantic-idle-completion-list-default): Use
semanticdb-without-unloaded-file-searches for speed, and to
conform to the controls that specify if the idle timer is supposed
to be parsing unparsed includes.
(semantic-idle-symbol-highlight-face)
(semantic-idle-symbol-maybe-highlight): Rename from *-summary-*.
Callers changed.
(semantic-idle-work-parse-neighboring-files-flag): Default to nil.
(semantic-idle-work-update-headers-flag): New var.
(semantic-idle-work-for-one-buffer): Use it.
(semantic-idle-local-symbol-highlight): Rename from
semantic-idle-tag-highlight.
(semantic-idle-truncate-long-summaries): New option.
* semantic/ia.el (semantic-ia-cache)
(semantic-ia-get-completions): Deleted. Callers changed.
(semantic-ia-show-variants): New command.
(semantic-ia-show-doc): If doc is empty, don't make a temp buffer.
(semantic-ia-show-summary): If there isn't anything to show, say so.
* semantic/grammar.el (semantic-grammar-create-package):
Save the buffer even in batch mode.
* semantic/fw.el
(semanticdb-without-unloaded-file-searches): New macro.
* semantic/dep.el (semantic-dependency-find-file-on-path):
Fix case dereferencing ede-object when it is a list.
* semantic/db-typecache.el (semanticdb-expand-nested-tag)
(semanticdb-typecache-faux-namespace): New functions.
(semanticdb-typecache-file-tags)
(semanticdb-typecache-merge-streams): Use them.
(semanticdb-typecache-file-tags): When deriving tags from a file,
give the mode a chance to monkey with the tag copy.
(semanticdb-typecache-find-default): Wrap find in save-excursion.
(semanticdb-typecache-find-by-name-helper): Merge found names down.
* semantic/db-global.el
(semanticdb-enable-gnu-global-in-buffer): Don't show messages if
GNU Global is not available and we don't want to throw an error.
* semantic/db-find.el (semanticdb-find-result-nth-in-buffer):
When trying to normalize the tag to a buffer, don't error if
set-buffer method doesn't exist.
* semantic/db-file.el (semanticdb-save-db): Simplify msg.
* semantic/db.el (semanticdb-refresh-table): If forcing a
refresh on a file not in a buffer, use semantic-find-file-noselect
and delete the buffer after use.
(semanticdb-current-database-list): When calculating root via
hooks, force it through true-filename and skip the list of
possible roots.
* semantic/ctxt.el (semantic-ctxt-imported-packages): New.
* semantic/analyze/debug.el
(semantic-analyzer-debug-insert-tag): Reset standard output to
current buffer.
(semantic-analyzer-debug-global-symbol)
(semantic-analyzer-debug-missing-innertype): Change "prefix" to
"symbol" in messages.
* semantic/analyze/refs.el: (semantic-analyze-refs-impl)
(semantic-analyze-refs-proto): When calculating value, make sure
the found tag is 'similar' to the originating tag.
(semantic--analyze-refs-find-tags-with-parent): Attempt to
identify matches via imported symbols of parents.
(semantic--analyze-refs-full-lookup-with-parents): Do a deep
search during the brute search.
* semantic/analyze.el
(semantic-analyze-find-tag-sequence-default): Be robust to
calculated scopes being nil.
* semantic/bovine/c.el (semantic-c-describe-environment): Add
project macro symbol array.
(semantic-c-parse-lexical-token): Add recursion limit.
(semantic-ctxt-imported-packages, semanticdb-expand-nested-tag):
New overrides.
(semantic-expand-c-tag-namelist): Split a full type from a typedef
out to its own tag.
(semantic-expand-c-tag-namelist): Do not split out a typedef'd
inline type if it is an anonymous type.
(semantic-c-reconstitute-token): Use the optional initializers as
a clue that some function is probably a constructor. When
defining the type of these constructors, split the parent name,
and use only the class part, if applicable.
* semantic/bovine/c-by.el:
* semantic/wisent/python-wy.el: Regenerate.
2010-09-18 22:49:54 -04:00
|
|
|
|
(remq 'unloaded semanticdb-find-default-throttle)
|
|
|
|
|
nil)))
|
|
|
|
|
,forms))
|
|
|
|
|
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
2009-09-28 15:15:00 +00:00
|
|
|
|
;; ;;; Editor goodies ;-)
|
|
|
|
|
;; ;;
|
|
|
|
|
;; (defconst semantic-fw-font-lock-keywords
|
|
|
|
|
;; (eval-when-compile
|
|
|
|
|
;; (let* (
|
|
|
|
|
;; ;; Variable declarations
|
|
|
|
|
;; (vl nil)
|
|
|
|
|
;; (kv (if vl (regexp-opt vl t) ""))
|
|
|
|
|
;; ;; Function declarations
|
|
|
|
|
;; (vf '(
|
|
|
|
|
;; "define-lex"
|
|
|
|
|
;; "define-lex-analyzer"
|
|
|
|
|
;; "define-lex-block-analyzer"
|
|
|
|
|
;; "define-lex-regex-analyzer"
|
|
|
|
|
;; "define-lex-spp-macro-declaration-analyzer"
|
|
|
|
|
;; "define-lex-spp-macro-undeclaration-analyzer"
|
|
|
|
|
;; "define-lex-spp-include-analyzer"
|
|
|
|
|
;; "define-lex-simple-regex-analyzer"
|
|
|
|
|
;; "define-lex-keyword-type-analyzer"
|
|
|
|
|
;; "define-lex-sexp-type-analyzer"
|
|
|
|
|
;; "define-lex-regex-type-analyzer"
|
|
|
|
|
;; "define-lex-string-type-analyzer"
|
|
|
|
|
;; "define-lex-block-type-analyzer"
|
|
|
|
|
;; ;;"define-mode-overload-implementation"
|
|
|
|
|
;; ;;"define-semantic-child-mode"
|
|
|
|
|
;; "define-semantic-idle-service"
|
|
|
|
|
;; "define-semantic-decoration-style"
|
|
|
|
|
;; "define-wisent-lexer"
|
|
|
|
|
;; "semantic-alias-obsolete"
|
|
|
|
|
;; "semantic-varalias-obsolete"
|
|
|
|
|
;; "semantic-make-obsolete-overload"
|
|
|
|
|
;; "defcustom-mode-local-semantic-dependency-system-include-path"
|
|
|
|
|
;; ))
|
|
|
|
|
;; (kf (if vf (regexp-opt vf t) ""))
|
|
|
|
|
;; ;; Regexp depths
|
|
|
|
|
;; (kv-depth (if kv (regexp-opt-depth kv) nil))
|
|
|
|
|
;; (kf-depth (if kf (regexp-opt-depth kf) nil))
|
|
|
|
|
;; )
|
|
|
|
|
;; `((,(concat
|
|
|
|
|
;; ;; Declarative things
|
|
|
|
|
;; "(\\(" kv "\\|" kf "\\)"
|
|
|
|
|
;; ;; Whitespaces & names
|
|
|
|
|
;; "\\>[ \t]*\\(\\sw+\\)?[ \t]*\\(\\sw+\\)?"
|
|
|
|
|
;; )
|
|
|
|
|
;; (1 font-lock-keyword-face)
|
|
|
|
|
;; (,(+ 1 kv-depth kf-depth 1)
|
|
|
|
|
;; (cond ((match-beginning 2)
|
|
|
|
|
;; font-lock-type-face)
|
|
|
|
|
;; ((match-beginning ,(+ 1 kv-depth 1))
|
|
|
|
|
;; font-lock-function-name-face)
|
|
|
|
|
;; )
|
|
|
|
|
;; nil t)
|
|
|
|
|
;; (,(+ 1 kv-depth kf-depth 1 1)
|
|
|
|
|
;; (cond ((match-beginning 2)
|
|
|
|
|
;; font-lock-variable-name-face)
|
|
|
|
|
;; )
|
|
|
|
|
;; nil t)))
|
|
|
|
|
;; ))
|
|
|
|
|
;; "Highlighted Semantic keywords.")
|
2009-08-28 15:01:48 +00:00
|
|
|
|
|
|
|
|
|
;; (when (fboundp 'font-lock-add-keywords)
|
|
|
|
|
;; (font-lock-add-keywords 'emacs-lisp-mode
|
|
|
|
|
;; semantic-fw-font-lock-keywords))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'semantic/fw)
|
|
|
|
|
|
2009-09-28 15:15:00 +00:00
|
|
|
|
;;; semantic/fw.el ends here
|