Mercurial > hg > xemacs-beta
comparison src/gdbinit @ 392:1f50e6fe4f3f r21-2-11
Import from CVS: tag r21-2-11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:10:50 +0200 |
parents | 8626e4521993 |
children | 6719134a07c2 |
comparison
equal
deleted
inserted
replaced
391:e50d8e68d7a5 | 392:1f50e6fe4f3f |
---|---|
120 end | 120 end |
121 end | 121 end |
122 end | 122 end |
123 end | 123 end |
124 | 124 |
125 define lisp-shadows | |
126 run -batch -vanilla -f list-load-path-shadows | |
127 end | |
128 | |
129 document lisp-shadows | |
130 Usage: lisp-shadows | |
131 Run xemacs to check for lisp shadows | |
132 end | |
133 | |
134 define environment-to-run-temacs | |
135 unset env EMACSLOADPATH | |
136 set env EMACSBOOTSTRAPLOADPATH = ../lisp/:.. | |
137 set env EMACSBOOTSTRAPMODULEPATH = ../lisp/ | |
138 end | |
139 | |
125 define run-temacs | 140 define run-temacs |
126 unset env EMACSLOADPATH | 141 environment-to-run-temacs |
127 set env EMACSBOOTSTRAPLOADPATH ../lisp/:.. | |
128 run -batch -l ../lisp/loadup.el run-temacs -q | 142 run -batch -l ../lisp/loadup.el run-temacs -q |
129 end | 143 end |
130 | 144 |
131 document run-temacs | 145 document run-temacs |
132 Usage: run-temacs | 146 Usage: run-temacs |
134 Use this with debugging tools (like purify) that cannot deal with dumping, | 148 Use this with debugging tools (like purify) that cannot deal with dumping, |
135 or when temacs builds successfully, but xemacs does not. | 149 or when temacs builds successfully, but xemacs does not. |
136 end | 150 end |
137 | 151 |
138 define update-elc | 152 define update-elc |
139 unset env EMACSLOADPATH | 153 environment-to-run-temacs |
140 set env EMACSBOOTSTRAPLOADPATH ../lisp/:.. | |
141 run -batch -l ../lisp/update-elc.el | 154 run -batch -l ../lisp/update-elc.el |
142 end | 155 end |
143 | 156 |
144 document update-elc | 157 document update-elc |
145 Usage: update-elc | 158 Usage: update-elc |
147 Use when debugging temacs, not xemacs! | 160 Use when debugging temacs, not xemacs! |
148 Use this when temacs builds successfully, but xemacs does not. | 161 Use this when temacs builds successfully, but xemacs does not. |
149 end | 162 end |
150 | 163 |
151 define dump-temacs | 164 define dump-temacs |
152 unset env EMACSLOADPATH | 165 environment-to-run-temacs |
153 set env EMACSBOOTSTRAPLOADPATH ../lisp/:.. | |
154 run -batch -l ../lisp/loadup.el dump | 166 run -batch -l ../lisp/loadup.el dump |
155 end | 167 end |
156 | 168 |
157 document dump-temacs | 169 document dump-temacs |
158 Usage: dump-temacs | 170 Usage: dump-temacs |