aboutsummaryrefslogtreecommitdiff
path: root/names.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the broken cryptographyRunxi Yu2024-08-121-3/+0
|
* uemacs: add line.h in names.c to fix compiling errorLi Jie2010-11-181-0/+1
| | | | | | | | | | | | | I got following errors while compiling uemacs: names.c:132: error: ‘insspace’ undeclared here (not in a function) names.c:217: error: ‘yank’ undeclared here (not in a function) make: *** [names.o] Error 1 It looks like names.c needs line.h for function declarations. Signed-off-by: Li Jie <eltshanli@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Remove two completly unused functions (fnclabel and spal).Thiago Farina2010-09-071-3/+0
| | | | | | | | The implementation of these functions are doing anything at all at this moment. So cleanup a bit the code by removing fnclabel and spal functions completly. Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs/efunc.h: Get rid of a duplicated exported type called "names".Thiago Farina2010-08-291-6/+5
| | | | | | | This type is already exported in edef.h Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Compiles on Mac OS X.Yong Luk Stanley Elijah Goh2010-08-241-1/+1
| | | | | | | | | | | | Compiles on Mac OS X 10.6.4. setmode() is renamed to setemode() to avoid conflict with OS X's unistd.h's setmode(). Modify Makefile to enable the appropriate DEFINES to compile on Mac OS X. Signed-off-by: Yong Luk Stanley Elijah Goh <stan@t0xt.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typedef struct NBIND to struct name_bind.Thiago Farina2010-07-041-1/+1
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* Clean up various compile warningsLinus Torvalds2006-11-191-1/+1
| | | | | | | | | | Most of them were harmless: gcc not being smart enough to realize that an uninitialized variable was never used if it wasn't initialized etc. Some of them were name clashes ("crypt()" is a standard library function, so rename it to "myencrypt()") etc. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
* Avoid various name clashes with curses and termcap headersLinus Torvalds2005-10-011-5/+5
| | | | | This allows us to include the proper headers, instead of declaring things (badly) by hand.
* Lots of ANSI'fication and cleanupsLinus Torvalds2005-09-301-0/+224
Still tons of warnings with "-Wall", but now it's actually getting closer. It even compiles again.