aboutsummaryrefslogtreecommitdiff
path: root/edef.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the broken cryptographyRunxi Yu2024-08-121-1/+0
|
* Make kbd macro save area use 'int' instead of shortLinus Torvalds2012-07-101-3/+3
| | | | | | | | | I'm starting to expand the input value from 'short' (with flags in the upper eight bytes) to 'int' (with negative values having flags). Small baby steps. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Make some magic variables private to search.c module.Thiago Farina2010-12-141-8/+0
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typedef struct RMC to struct magic_replacement.Thiago Farina2010-11-301-1/+1
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typedef struct MC to struct magic.Thiago Farina2010-11-281-2/+2
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: remove forward declaration of 'struct video' from edef.hThiago Farina2010-11-031-2/+0
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Move function declarations from edef.h to efunc.h.Thiago Farina2010-10-251-4/+0
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Get rid of the CALLED macro.Thiago Farina2010-09-071-4/+0
| | | | | | | | | uemacs is not a subprogram and doesn't seem it will be, so there is no reason to leave this macro. And this macro is defined to 0, so we never reach the path where we test for this macro. 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-1/+0
| | | | | | | 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: convert typedef struct KILL to struct kill.Thiago Farina2010-08-101-2/+2
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typedef struct window_t to struct window.Thiago Farina2010-08-011-4/+4
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typedef struct TERM to struct terminal.Thiago Farina2010-07-111-21/+26
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.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>
* uemacs: convert typedef struct KEYTAB to struct key_tab.Thiago Farina2010-06-301-1/+1
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typdef struct VIDEO to struct video.Thiago Farina2010-06-011-1/+1
| | | | | Signed-off-by: Thiago Farina <thiago.farina@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typdef struct LINE to struct line.Thiago Farina2010-04-281-2/+2
| | | | | | Cc: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: enable -Wstrict-prototypesPekka Enberg2010-02-271-1/+1
| | | | | | | | | This patch enables the GCC '-Wstrict-prototypes' switch and fixes up broken prototypes. Cc: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: remove typdef struct BUFFER -> struct buffer.Thiago Farina2010-02-151-5/+5
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* Make sources mostly sparse-cleanLinus Torvalds2005-10-011-14/+1
| | | | | Mainly an issue of taking care of a few remaining K&R function declarations.
* Fix more compiler warningsLinus Torvalds2005-10-011-1/+1
| | | | Better initializers, and more proper function types.
* Fix ugly "definitions in header file" crudLinus Torvalds2005-10-011-166/+1
| | | | | | | Move various initializations into new "globals.c" file. Also mark some variables static, and fix up some trivial compiler and sparse warnings.
* Replace "WINDOW" type with "window_t"Linus Torvalds2005-10-011-8/+8
| | | | Starting to try to avoid name clashes with curses and friends.
* Fix up some trivial gcc -Wall warningsLinus Torvalds2005-09-301-1/+1
| | | | Lots more to go.
* Lots of ANSI'fication and cleanupsLinus Torvalds2005-09-301-226/+0
| | | | | | Still tons of warnings with "-Wall", but now it's actually getting closer. It even compiles again.
* More ANSI'ficationLinus Torvalds2005-09-301-6/+15
| | | | | Next up: enabling "-Wall" in the makefile. Not because it's ready, but because it gets easier to track where we are in the process..
* Yet more ANSI'ficationLinus Torvalds2005-09-301-1/+23
| | | | Bored? Me? Why do you ask?
* Move "input.c" towards ANSI function declarationsLinus Torvalds2005-09-301-0/+14
|
* More ANSI-fication of the sourcesLinus Torvalds2005-09-301-0/+8
| | | | | Ugh. Some of this is ugly. We should really include <curses.h> etc, but there are too many name clashes for that right now.
* More function declarations: region.cLinus Torvalds2005-09-301-0/+7
| | | | Hey, "word.c" is now sparse-clean.
* First cut at turning things into proper modern ANSI CLinus Torvalds2005-09-301-0/+164
| | | | Hey! Real declarations!
* Fix up headers and bogus re-definitions to use <stdlib.h> and <string.h>Linus Torvalds2005-09-301-4/+3
| | | | | Hey, it's already compiling cleaner. Getting proper function declarations will be a bitch, though.
* Run "indent -kr -i8" on the sourcesLinus Torvalds2005-09-301-198/+198
| | | | Let's see how nasty it is to clean things up. For real.
* Initial import of em-4.0.15-ltLinus Torvalds2005-05-311-0/+323
This is a slightly updated version of uemacs-PK (PK is Pekka Kutvonen) which was used at Helsinki University a long time ago. My fingers cannot be retrained.