Changeset 604
- Timestamp:
- Mar 1, 2004, 9:06:39 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-readloop.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-readloop.lisp
r569 r604 245 245 ((command-line-arguments 246 246 :initform 247 (list *standard-help-argument* *standard-version-argument*)))) 247 (list *standard-help-argument* *standard-version-argument*)) 248 (ui-object :initform nil :initarg :ui-object :accessor application-ui-object))) 248 249 249 250 (defclass ui-object () 251 ()) 252 253 ;;; It's intended that this be specialized ... 254 (defmethod ui-object-do-operation ((u ui-object) operation &rest args) 255 (declare (ignore operation args))) 256 257 250 258 (defun %usage-exit (banner exit-status other-args) 251 259 (with-cstrs ((banner banner) … … 351 359 *openmcl-revision*) 352 360 *openmcl-suffix*)) 361 362 (defmethod application-ui-operation ((a application) operation &rest args) 363 (let* ((ui-object (application-ui-object a))) 364 (when ui-object 365 (apply #'ui-object-do-operation ui-object operation args)))) 366 367 368 353 369 354 370
Note:
See TracChangeset
for help on using the changeset viewer.
