Function: doctor-build

doctor-build is a byte-compiled function defined in doctor.el.gz.

Signature

(doctor-build STR1 STR2)

Documentation

Make a symbol out of the concatenation of the two non-list arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/play/doctor.el.gz
(defun doctor-build (str1 str2)
  "Make a symbol out of the concatenation of the two non-list arguments."
  (cond ((null str1) str2)
	((null str2) str1)
	((and (atom str1)
	      (atom str2))
	 (intern (concat (doctor-make-string str1)
			 (doctor-make-string str2))))
	(t nil)))