Merge branch 'the1ts/master'

This commit is contained in:
Gina Trapani
2009-09-04 16:11:50 -07:00
2 changed files with 16 additions and 11 deletions

View File

@@ -17,9 +17,10 @@ EndVersion
exit 1
}
# Set script name early.
# Set script name and full path early.
TODO_SH=$(basename "$0")
export TODO_SH
TODO_FULL_SH="$0"
export TODO_SH TODO_FULL_SH
oneline_usage="$TODO_SH [-fhpantvV] [-d todo_config] action [task_number] [task_description]"
@@ -246,7 +247,7 @@ cleaninput()
{
# Cleanup the input
# Replace newlines with spaces
input=`echo $input | tr -d '\n'`
input=`echo $input | tr -d '\r|\n'`
}
archive()