home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / languages / elisp / packages / xdb.README < prev    next >
Encoding:
Text File  |  1992-12-12  |  1.1 KB  |  34 lines

  1. ;; LCD Archive Entry:
  2. ;; xdb|K. Shane Hartman|shane@ai.mit.edu|
  3. ;; Run HP PA-RISC symbolic debugger in emacs buffer.|
  4. ;; 92-12-12|$Revision: 1.11 $|~/packages/xdb.tar.Z|
  5.  
  6. This package, based on gdb.el from the emacs distribution allows you
  7. to run the HP PA-RISC debugger (xdb) in an emacs buffer.  It steps
  8. through the source code, sets breakpoints, etc.
  9.  
  10. For help with commands, read the source or ask for mode help when
  11. running xdb.
  12.  
  13. Installation notes:
  14.  
  15. Check the settings of the following elisp variables and make sure they
  16. are right for you.
  17.  
  18. (defvar xdb-command-name "xdb"
  19.   "Pathname for executing xdb.")
  20.  
  21. xdb.help is included with the distribution
  22.  
  23. (defvar xdb-help-file (expand-file-name "xdb.help")
  24.   "Location of xdb help text")
  25.  
  26. (defvar xdb-paths nil
  27.   "A list of directories containing source code that should be made known
  28. to xdb on startup.  If nil, only source files in the program directory
  29. will be known to xdb.
  30.  
  31. The pathnames should be full or relative to the program directory.
  32. Program directory refers to the directory of the program that is being
  33. debugged.")
  34.