Changeset 188


Ignore:
Timestamp:
10/30/02 20:37:28 (21 years ago)
Author:
piso
Message:

handleKeyEvent(): Lisp support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/j/Editor.java

    r185 r188  
    33 *
    44 * Copyright (C) 1998-2002 Peter Graves
    5  * $Id: Editor.java,v 1.12 2002-10-30 18:47:25 piso Exp $
     5 * $Id: Editor.java,v 1.13 2002-10-30 20:37:28 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    23862386                        macro.record(command);
    23872387                }
     2388                if (command.length() > 0 && command.charAt(0) == '(') {
     2389                    // Lisp form.
     2390                    executeCommand(command);
     2391                    return true;
     2392                }
    23882393                String[] array = parseCommand(command);
    23892394                if (array != null) {
Note: See TracChangeset for help on using the changeset viewer.