Function: srecode-dictionary-hide-section

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

Signature

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

Implementations

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

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/dictionary.el.gz
(cl-defmethod srecode-dictionary-hide-section ((dict srecode-dictionary) name)
  "In dictionary DICT, indicate that the section NAME should be hidden."
  ;; We need to find the has value, and then delete it.
  ;; Validate inputs
  (unless (stringp name)
    (signal 'wrong-type-argument (list name 'stringp)))

  ;; Add the value.
  (with-slots (namehash) dict
    (remhash name namehash))
  nil)