Changeset 3edaed9 for root_commands.c


Ignore:
Timestamp:
2006-04-25T17:57:23Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
1be54a9
Parents:
85616c3 (diff), 79c6f9f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Misc. things (mainly code cleanup, better quoting for root commands)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • root_commands.c

    r85616c3 r3edaed9  
    5757                                s --;
    5858                        }
     59                }
     60                else if( *s == '\\' && ( ( !q && s[1] ) || ( q && q == s[1] ) ) )
     61                {
     62                        char *cpy;
     63                       
     64                        for( cpy = s; *cpy; cpy ++ )
     65                                cpy[0] = cpy[1];
    5966                }
    6067                else if( *s == q )
Note: See TracChangeset for help on using the changeset viewer.