Changeset 163


Ignore:
Timestamp:
10/18/02 23:47:32 (21 years ago)
Author:
piso
Message:

parseLine(): include closing quote when formatting quoted string.

File:
1 edited

Legend:

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

    r141 r163  
    33 *
    44 * Copyright (C) 1998-2002 Peter Graves
    5  * $Id: LispFormatter.java,v 1.2 2002-10-15 00:25:48 piso Exp $
     5 * $Id: LispFormatter.java,v 1.3 2002-10-18 23:47:32 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    105105            if (state == STATE_QUOTE) {
    106106                if (c == '"') {
    107                     endToken(text, i, state);
     107                    endToken(text, i+1, state);
    108108                    state = STATE_NEUTRAL;
    109109                }
Note: See TracChangeset for help on using the changeset viewer.