Changeset 4224 for trunk/j/src/org/armedbear/lisp/top-level.lisp
- Timestamp:
- 10/06/03 15:20:46 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/top-level.lisp
r4213 r4224 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: top-level.lisp,v 1. 7 2003-10-06 01:03:57piso Exp $4 ;;; $Id: top-level.lisp,v 1.8 2003-10-06 15:20:46 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 153 153 154 154 (defun help-command (ignored) 155 (format t " COMMAND ABBR DESCRIPTION~%")155 (format t "~% COMMAND ABBR DESCRIPTION~%") 156 156 (dolist (entry *command-table*) 157 (format t " ~A~A~A~%"157 (format t " ~A~A~A~%" 158 158 (pad (entry-name entry) 12) 159 159 (pad (entry-abbr entry) 5) 160 160 (entry-help entry) 161 ))) 161 )) 162 (format t "~%Commands must be prefixed by the command character, which is '~A' by default.~%~%" 163 *command-char*)) 162 164 163 165 (defparameter *command-table*
Note: See TracChangeset
for help on using the changeset viewer.