Emacs lisp code to lookup the description of a function in devhelp.

(defun devhelp (arg)
  "Lookup devhelp reference books."
 
  (interactive 
   (list (let* ((default (current-word))
		(input (read-string 
			(format "Devhelp%s: "
				(if (string= default "")
				    ""
				  (format " (default %s)" default))))))
 
	   (if (string= input "")
	       (if (string= default "")
		   (error "No devhelp args given")
		 default)
	     input))))
 
devhelp-el.txt · Last modified: 2005/07/31 04:07 by 210.18.190.194
 
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki
This work is licensed under the GNU Free Documentation License..