Changeset 14371


Ignore:
Timestamp:
02/13/13 19:26:40 (11 years ago)
Author:
Mark Evenson
Message:

Backport r14360 | rschlatte | 2013-01-19 18:35:45 +0100 (Sat, 19 Jan 2013) | 1 line

add #\Delete character name (found in McCLIM sources)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1.x/src/org/armedbear/lisp/LispCharacter.java

    r14353 r14371  
    579579    if (lower.equals("space") || lower.equals("sp"))
    580580      return ' ';
    581     if (lower.equals("rubout") || lower.equals("del"))
     581    if (lower.equals("rubout") || lower.equals("del") || lower.equals("delete"))
    582582      return 127;
    583583    if (lower.startsWith("u")) {
Note: See TracChangeset for help on using the changeset viewer.