Skip to content

Commit

Permalink
Minor comment edits and removal of a warning
Browse files Browse the repository at this point in the history
darcs-hash:20061118212459-ac50b-d6f4dddb560b4815ca850f9e9c3e8d7a5cf5ea70.gz
  • Loading branch information
liljencrantz committed Nov 18, 2006
1 parent eb3c99c commit dd061b1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions doc_src/index.hdr
Original file line number Diff line number Diff line change
Expand Up @@ -1325,8 +1325,6 @@ g++, javac, java, gcj, lpr, doxygen, whois, find)
- Reduce the space of the pager by one line to allow the commandline to remain visible.
- down-arrow could be used to save the current command to the history. Or give the next command in-sequnce. Or both.
- A pretty-printer.
- Help messages for builtin should not be compiled into fish, they should be kept in a separate directory
- Shellscript functions should be able to show help on the commandline instead of launching a browser
- Drop support for inputrc-files. Use shellscripts and the bind builtin. Also, redo the syntax for the bind builtin to something more sane.
- History could reload itself when the file is updated. This would need to be done in a clever way to avoid chain reactions
- The error function should probably be moved into it's own library, and be made mere general purpose.
Expand Down
2 changes: 1 addition & 1 deletion env_universal.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** \file env_universal.h
Universal variable client library
Universal variable client library.
*/

#ifndef ENV_UNIVERSAL_H
Expand Down
2 changes: 1 addition & 1 deletion parser.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** \file parser.c
The fish parser. Contains functions for parsing code.
The fish parser. Contains functions for parsing and evaluating code.
*/

Expand Down
2 changes: 1 addition & 1 deletion proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ static int terminal_give_to_job( job_t *j, int cont )
}

/**
REturns contol of the terminal
Returns contol of the terminal to the shell
*/
static int terminal_return_from_job( job_t *j)
{
Expand Down
2 changes: 1 addition & 1 deletion reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ static void handle_token_history( int forward, int reset )
{
if( current_pos == -1 )
{
wchar_t *item;
const wchar_t *item;

/*
Move to previous line
Expand Down

0 comments on commit dd061b1

Please sign in to comment.