]> code.delx.au - gnu-emacs-elpa/blob - packages/notes-mode/notes-bootstrap.el
7b009b32b0a9a9370e81d0d20f0ca90d244ac894
[gnu-emacs-elpa] / packages / notes-mode / notes-bootstrap.el
1
2 ;;;
3 ;;; notes-bootstrap.el
4 ;;; $Id: notes-bootstrap.el,v 1.2 2000/06/03 17:23:29 johnh Exp $
5 ;;;
6 ;;; Copyright (C) 1997 by John Heidemann
7 ;;; Comments to <johnh@isi.edu>.
8 ;;;
9 ;;; This file is under the Gnu Public License.
10 ;;;
11
12 (defun notes-load-path ()
13 "I couldn't get emacs -e '(princ load-path)' to work."
14 (interactive)
15 (mapcar
16 (function
17 (lambda (a)
18 (princ a)
19 (princ "\n")
20 ))
21 load-path)
22 )
23