comparison nt/README @ 1203:5f2f8dcbfb3e

[xemacs-hg @ 2003-01-12 11:04:30 by michaels] 2002-12-16 Ben Wing <ben@xemacs.org> * README (NOTE): * config.inc.samp: * config.inc.samp (PACKAGE_PREFIX): * config.inc.samp (GTK_DIR): * config.inc.samp (COMPFACE_DIR): * config.inc.samp (USE_FASTCALL): * config.inc.samp (HAVE_VC6): New. * config.inc.samp (PROFILE_SUPPORT): * config.inc.samp (DEBUG_XEMACS): * config.inc.samp (USE_PORTABLE_DUMPER): * config.inc.samp (USE_KKCC): New. * config.inc.samp (USE_UNION_TYPE): New. * xemacs.dsp (CFG): * xemacs.mak (HAVE_VC6): * xemacs.mak (ERROR_CHECK_ALL): New. * xemacs.mak (CPLUSPLUS_COMPILE): New. * xemacs.mak (USE_KKCC): New. * xemacs.mak (USE_UNION_TYPE): New. * xemacs.mak (USE_PORTABLE_DUMPER): * xemacs.mak (PROFILE_FLAGS): * xemacs.mak (CPLUSPLUS_COMPILE_FLAGS): New. * xemacs.mak (DUMPER_DEFINES): * xemacs.mak (KKCC_DEFINES): New. * xemacs.mak (DEFINES): * xemacs.mak (LASTFILE_FLAGS): * xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): * xemacs.mak (OS): Support C++ compilation, KKCC compilation. See src/ChangeLog. Add stuff about the evilness of USE_UNION_TYPE.
author michaels
date Sun, 12 Jan 2003 11:04:30 +0000
parents 26137a2aa3bb
children 4542b72c005e
comparison
equal deleted inserted replaced
1202:6041a741b6d6 1203:5f2f8dcbfb3e
279 279
280 2. See instructions above for obtaining a workspace file for use with 280 2. See instructions above for obtaining a workspace file for use with
281 MS Developer Studio. Build and debug your XEmacs this way. 281 MS Developer Studio. Build and debug your XEmacs this way.
282 282
283 3. To display the contents of a lisp variable, type Shift-F9 (or use the 283 3. To display the contents of a lisp variable, type Shift-F9 (or use the
284 menu) to bring up the QuickWatch window, type debug_print(variable) and 284 menu) to bring up the QuickWatch window, type dp(variable) and click
285 click Recalculate. The output will appear in a console window, as well 285 Recalculate. The output will appear in a console window, as well as in
286 as in the Debug window in MS Developer Studio. 286 the Debug window in MS Developer Studio.
287 287
288 4. To view Lisp variables in the "Watch" window wrap the variable in one of 288 4. To display a current Lisp backtrace, type db() in the QuickWatch window,
289 as in the previous item.
290
291 5. To view Lisp variables in the "Watch" window wrap the variable in one of
289 the helper functions from the file src\console-msw.c, for example type 292 the helper functions from the file src\console-msw.c, for example type
290 DSTRING(variable) in the "Watch" window to inspect a Lisp string. 293 DSTRING(variable) in the "Watch" window to inspect a Lisp string.
294
295 6. For further information on debugging XEmacs, see the item
296 `How to Debug an XEmacs problem with a debugger' in the XEmacs FAQ.
291 297
292 298
293 * Known Problems 299 * Known Problems
294 ================ 300 ================
295 301