Function: srecode-map-load-path-set

srecode-map-load-path-set is a byte-compiled function defined in map.el.gz.

Signature

(srecode-map-load-path-set SYM VAL)

Documentation

Set SYM to the new VAL, then update the srecode map.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/map.el.gz
;;; THE PATH
;;
;; We need to do this last since the setter needs the above code.

(defun srecode-map-load-path-set (sym val)
  "Set SYM to the new VAL, then update the srecode map."
  (set-default sym val)
  (srecode-map-update-map t))