.
This commit is contained in:
parent
02a50969f1
commit
73956d102f
14
README.md
14
README.md
@ -58,5 +58,19 @@ fixing it would have been a lost cause, if not for Cscope itself. Well, Csope no
|
|||||||
| readline.c | all functions directly dealing with GNU Readline; responsible for line editing in *input mode* |
|
| readline.c | all functions directly dealing with GNU Readline; responsible for line editing in *input mode* |
|
||||||
| help.c | all functions dealing with help messages |
|
| help.c | all functions dealing with help messages |
|
||||||
|
|
||||||
|
# TODO /*move soon*/
|
||||||
|
+ recursive macro function to assign KEY_\* default values; look for a new and shiny preprocessor?
|
||||||
|
+ sort out constants.h
|
||||||
|
+ scrollbar() uses magic int literals?
|
||||||
|
+ Handle unused parameters gracefully (#define UNUSED(x) (void)(x))
|
||||||
|
+ Ordering function declarations in global.h by alpha order is not smart
|
||||||
|
+ lineflagafterfile is stupid
|
||||||
|
+ library.h...; "private library", in a program using 90 globals; ffs
|
||||||
|
|
||||||
|
# BUGS
|
||||||
|
+ Changing text double frees:
|
||||||
|
free(): double free detected in tcache 2
|
||||||
|
Aborted
|
||||||
|
|
||||||
# Future features / contributor wishlist
|
# Future features / contributor wishlist
|
||||||
+ providing support for other languages by integrating new lexers (e.g. ctag's)
|
+ providing support for other languages by integrating new lexers (e.g. ctag's)
|
||||||
|
12
TODO
12
TODO
@ -1,12 +0,0 @@
|
|||||||
# TODO
|
|
||||||
+ recursive macro function to assign KEY_* default values; look for a new and shiny preprocessor?
|
|
||||||
+ sort out constants.h
|
|
||||||
+ scrollbar() uses magic int literals?
|
|
||||||
+ Handle unused parameters gracefully (#define UNUSED(x) (void)(x))
|
|
||||||
+ Ordering function declarations in global.h by alpha order is not smart
|
|
||||||
+ lineflagafterfile is stupid
|
|
||||||
|
|
||||||
# BUGS
|
|
||||||
+ Changing text double frees:
|
|
||||||
free(): double free detected in tcache 2
|
|
||||||
Aborted
|
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
|
|
||||||
char *
|
const char *
|
||||||
basename(char *path)
|
basename(char *path)
|
||||||
{
|
{
|
||||||
char *s;
|
char *s;
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
char *compath(char *pathname);
|
char *compath(char *pathname);
|
||||||
char *egrepinit(char *egreppat);
|
char *egrepinit(char *egreppat);
|
||||||
char *logdir(char *name);
|
char *logdir(char *name);
|
||||||
char *basename(char *path);
|
const char *basename(char *path);
|
||||||
FILE *myfopen(char *path, char *mode);
|
FILE *myfopen(char *path, char *mode);
|
||||||
char *mygetenv(char *variable, char *deflt);
|
char *mygetenv(char *variable, char *deflt);
|
||||||
int myopen(char *path, int flag, int mode);
|
int myopen(char *path, int flag, int mode);
|
||||||
|
Loading…
Reference in New Issue
Block a user