diff src/gdbinit @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents c5d627a313b1
children e11d67e05968
line wrap: on
line diff
--- a/src/gdbinit	Mon Aug 13 10:33:19 2007 +0200
+++ b/src/gdbinit	Mon Aug 13 10:34:13 2007 +0200
@@ -123,7 +123,9 @@
 end
 
 define run-temacs
-run -batch -l loadup.el run-temacs -q
+  unset env EMACSLOADPATH
+  set env EMACSBOOTSTRAPLOADPATH ../lisp/:..
+  run -batch -l ../lisp/loadup.el run-temacs -q
 end
 
 document run-temacs
@@ -134,21 +136,22 @@
 end
 
 define update-elc
-  set env EMACSLOADPATH=../lisp/
-  set env EMACSBOOTSTRAPLOADPATH=../lisp/:..
-  run -batch -l update-elc.el
+  unset env EMACSLOADPATH
+  set env EMACSBOOTSTRAPLOADPATH ../lisp/:..
+  run -batch -l ../lisp/update-elc.el
 end
 
 document update-elc
 Usage: update-elc
-Run the elc compilation part of the build procedure.
+Run the core lisp byte compilation part of the build procedure.
 Use when debugging temacs, not xemacs!
 Use this when temacs builds successfully, but xemacs does not.
 end
 
 define dump-temacs
-  set env EMACSLOADPATH=../lisp/:..
-  run -batch -l loadup.el dump
+  unset env EMACSLOADPATH
+  set env EMACSBOOTSTRAPLOADPATH ../lisp/:..
+  run -batch -l ../lisp/loadup.el dump
 end
 
 document dump-temacs