comparison 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
comparison
equal deleted inserted replaced
283:fa3d41851a08 284:558f606b08ae
121 end 121 end
122 end 122 end
123 end 123 end
124 124
125 define run-temacs 125 define run-temacs
126 run -batch -l loadup.el run-temacs -q 126 unset env EMACSLOADPATH
127 set env EMACSBOOTSTRAPLOADPATH ../lisp/:..
128 run -batch -l ../lisp/loadup.el run-temacs -q
127 end 129 end
128 130
129 document run-temacs 131 document run-temacs
130 Usage: run-temacs 132 Usage: run-temacs
131 Run temacs interactively, like xemacs. 133 Run temacs interactively, like xemacs.
132 Use this with debugging tools (like purify) that cannot deal with dumping, 134 Use this with debugging tools (like purify) that cannot deal with dumping,
133 or when temacs builds successfully, but xemacs does not. 135 or when temacs builds successfully, but xemacs does not.
134 end 136 end
135 137
136 define update-elc 138 define update-elc
137 set env EMACSLOADPATH=../lisp/ 139 unset env EMACSLOADPATH
138 set env EMACSBOOTSTRAPLOADPATH=../lisp/:.. 140 set env EMACSBOOTSTRAPLOADPATH ../lisp/:..
139 run -batch -l update-elc.el 141 run -batch -l ../lisp/update-elc.el
140 end 142 end
141 143
142 document update-elc 144 document update-elc
143 Usage: update-elc 145 Usage: update-elc
144 Run the elc compilation part of the build procedure. 146 Run the core lisp byte compilation part of the build procedure.
145 Use when debugging temacs, not xemacs! 147 Use when debugging temacs, not xemacs!
146 Use this when temacs builds successfully, but xemacs does not. 148 Use this when temacs builds successfully, but xemacs does not.
147 end 149 end
148 150
149 define dump-temacs 151 define dump-temacs
150 set env EMACSLOADPATH=../lisp/:.. 152 unset env EMACSLOADPATH
151 run -batch -l loadup.el dump 153 set env EMACSBOOTSTRAPLOADPATH ../lisp/:..
154 run -batch -l ../lisp/loadup.el dump
152 end 155 end
153 156
154 document dump-temacs 157 document dump-temacs
155 Usage: dump-temacs 158 Usage: dump-temacs
156 Run the dumping part of the build procedure. 159 Run the dumping part of the build procedure.