Changeset 667


Ignore:
Timestamp:
Mar 18, 2004, 4:43:56 PM (21 years ago)
Author:
Gary Byers
Message:

Command-information struct moves here; add function slot.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/hemlock/src/cocoa-hemlock.lisp

    r587 r667  
    66
    77(in-package :hemlock-internals)
     8
     9(defstruct command-interpreter-info
     10  (current-command (make-array 10 :fill-pointer 0 :adjustable t))
     11  (current-translation (make-array 10 :fill-pointer 0 :adjustable t))
     12  (last-command-type nil)
     13  (command-type-set nil)
     14  (prefix-argument nil)
     15  (prefix-argument-supplied nil)
     16  frame
     17  (function nil)
     18  )
     19
     20(defvar *current-command-info* nil)
    821
    922(defun buffer-windows (buffer)
Note: See TracChangeset for help on using the changeset viewer.