]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/notes-mode/notes-bootstrap.el
Add notes-mode.
[gnu-emacs-elpa] / packages / notes-mode / notes-bootstrap.el
diff --git a/packages/notes-mode/notes-bootstrap.el b/packages/notes-mode/notes-bootstrap.el
new file mode 100644 (file)
index 0000000..7b009b3
--- /dev/null
@@ -0,0 +1,23 @@
+
+;;;
+;;; notes-bootstrap.el
+;;; $Id: notes-bootstrap.el,v 1.2 2000/06/03 17:23:29 johnh Exp $
+;;;
+;;; Copyright (C) 1997 by John Heidemann
+;;; Comments to <johnh@isi.edu>.
+;;;
+;;; This file is under the Gnu Public License.
+;;;
+
+(defun notes-load-path ()
+  "I couldn't get emacs -e '(princ load-path)' to work."
+  (interactive)
+  (mapcar
+   (function
+    (lambda (a)
+      (princ a)
+      (princ "\n")
+      ))
+   load-path)
+)
+