Function: srecode-dictionary-show-section

srecode-dictionary-show-section is a byte-compiled function defined in dictionary.el.gz.

Signature

(srecode-dictionary-show-section ARG &rest ARGS)

Implementations

(srecode-dictionary-show-section (DICT srecode-dictionary) NAME) in `srecode/dictionary.el'.

In dictionary DICT, indicate that the section NAME should be exposed.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/dictionary.el.gz
(cl-defmethod srecode-dictionary-show-section ((dict srecode-dictionary) name)
  "In dictionary DICT, indicate that the section NAME should be exposed."
  ;; Validate inputs
  (unless (stringp name)
    (signal 'wrong-type-argument (list name 'stringp)))

  ;; Showing a section is just like making a section dictionary, but
  ;; with no dictionary values to add.
  (srecode-dictionary-add-section-dictionary dict name t)
  nil)