diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-14 15:31:03 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-14 15:31:03 +0200 |
commit | 4d96ee406d846008db9419f91915b959d046a592 (patch) | |
tree | 2493a11c1ed4b362a24065b33daf5461be3c3b37 /lisp/cedet/srecode | |
parent | 98df06c19ea3bb20f116c3776dc339a66c442ff5 (diff) | |
download | emacs-4d96ee406d846008db9419f91915b959d046a592.tar.gz emacs-4d96ee406d846008db9419f91915b959d046a592.tar.bz2 emacs-4d96ee406d846008db9419f91915b959d046a592.zip |
srecode/dictionary compilation fix
* lisp/cedet/srecode/ctxt.el (srecode/dictionary): Require to
avoid compilation warning about unknown slot. Remove function
declarations that point to that file.
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r-- | lisp/cedet/srecode/ctxt.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/cedet/srecode/ctxt.el b/lisp/cedet/srecode/ctxt.el index 071fbe46254..b20b9bc6417 100644 --- a/lisp/cedet/srecode/ctxt.el +++ b/lisp/cedet/srecode/ctxt.el @@ -32,9 +32,7 @@ (require 'semantic) (require 'semantic/tag-ls) - -(declare-function srecode-dictionary-show-section "srecode/dictionary") -(declare-function srecode-dictionary-set-value "srecode/dictionary") +(require 'srecode/dictionary) ;;; Code: @@ -175,7 +173,6 @@ This might add the following: PURE - show a section if a function is pure virtual. PARENT - The name of a parent type for functions. PROTECTION - Show a protection section, and what the protection is." - (require 'srecode/dictionary) (when template (let ((name (oref template object-name)) |