Function: srecode-semantic-handle-:system

srecode-semantic-handle-:system is a byte-compiled function defined in args.el.gz.

Signature

(srecode-semantic-handle-:system DICT)

Documentation

Add macros into the dictionary DICT based on the current :system.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/args.el.gz
;;; :system ARGUMENT HANDLING
;;
;; When a :system argument is required, fill the dictionary with
;; information about the computer Emacs is running on.
(defun srecode-semantic-handle-:system (dict)
  "Add macros into the dictionary DICT based on the current :system."
    (srecode-dictionary-set-value dict "SYSTEMCONF" system-configuration)
    (srecode-dictionary-set-value dict "SYSTEMTYPE" system-type)
    (srecode-dictionary-set-value dict "SYSTEMNAME" (system-name))
    (srecode-dictionary-set-value dict "MAILHOST" (or mail-host-address
						      (system-name)))
  )