Skip to content

Commit

Permalink
bla
Browse files Browse the repository at this point in the history
  • Loading branch information
masse committed Apr 13, 2003
1 parent 5658138 commit 605784b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Moyenne priorit
_ reprendre les regexp pour garder la cha�ne initiale. Am�liorer save-options
en cons�quence
- reprendre la doc
_ Content-Type, m�me avec des guillemets
_ Content-Type, m�me avec des guillemets (plus ou moins fait)

Basse priorit�
--------------
Expand Down
3 changes: 3 additions & 0 deletions src/flrn_command.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
#include "tty_keyboard.h"
#include "flrn_pager.h"
#include "flrn_menus.h"
#ifdef USE_SLANG_LANGUAGE
#include "slang_flrn.h"
#endif

static UNUSED char rcsid[]="$Id$";

Expand Down
2 changes: 1 addition & 1 deletion src/tty_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ int Aff_arbre (int row, int col, Article_List *init,
for (up=0;up<height+1;up++)
for (left=0;left<(to_left+to_right)*2+3; left++)
table[up][left]=(FIELD_NORMAL<<8) + ' ';
#define field_for_art(x) (Est_proprietaire(x) ? FIELD_AT_MINE : FIELD_AT_OTH)
#define field_for_art(x) ((Est_proprietaire(x)>0) ? FIELD_AT_MINE : FIELD_AT_OTH)
#define char_for_art(x) (x->numero== -1 ? SYMB_ART_UNK : (x->flag & FLAG_READ ? SYMB_ART_READ : SYMB_ART_UNR))
/* Enfin, on va commencer "modifier" to_left et to_right... */
left=up=down=act_right=act_right_deb=0;
Expand Down

0 comments on commit 605784b

Please sign in to comment.