Function: idlwave-path-alist-remove-flag
idlwave-path-alist-remove-flag is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-path-alist-remove-flag LIST-ENTRY FLAG)
Documentation
Remove a flag to the path list entry, if set.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-path-alist-remove-flag (list-entry flag)
"Remove a flag to the path list entry, if set."
(let ((flags (delq flag (cdr list-entry))))
(setcdr list-entry flags)))