Function: srecode-dictionary-dump
srecode-dictionary-dump is an interactive and byte-compiled function
defined in dictionary.el.gz.
Signature
(srecode-dictionary-dump)
Documentation
Dump a typical fabricated dictionary.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/dictionary.el.gz
(defun srecode-dictionary-dump ()
"Dump a typical fabricated dictionary."
(interactive)
(require 'srecode/find)
(let ((modesym major-mode))
;; This load allows the dictionary access to inherited
;; and stacked dictionary entries.
(srecode-load-tables-for-mode modesym)
(let ((tmp (srecode-get-mode-table modesym))
)
(if (not tmp)
(error "No table found for mode %S" modesym))
;; Now make the dictionary.
(let ((dict (srecode-create-dictionary (current-buffer))))
(with-output-to-temp-buffer "*SRECODE DUMP*"
(princ "DICTIONARY FOR ")
(princ major-mode)
(princ "\n--------------------------------------------\n")
(srecode-dump dict))
))))