aboutsummaryrefslogtreecommitdiff
path: root/bind.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* uemacs: Move structure line and its functions to its own header file.Thiago Farina2010-11-151-3/+5
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Fix return statementsPekka Enberg2010-08-291-39/+39
| | | | | | | | Return statement is not a function so remove superfluous use of parenthesis. Cc: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Pekka Enberg <penberg@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: convert typedef struct window_t to struct window.Thiago Farina2010-08-011-2/+2
| | | | | 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-3/+3
| | | | | 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-17/+17
| | | | | Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: Use ARRAY_SIZE in more places.Thiago Farina2010-06-111-6/+7
| | | | | Signed-off-by: Thiago Farina <thiago.farina@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* uemacs: remove use of 'register' keywordPekka Enberg2010-02-271-25/+25
| | | | | | | | | | | | | Lets welcome uEmacs/PK to the year 2010! As expected, the patch has no effect on the generated code: text data bss dec hex filename 106002 8864 18616 133482 2096a em 106002 8864 18616 133482 2096a em.new 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-2/+2
| | | | | 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>
* Make sources mostly sparse-cleanLinus Torvalds2005-10-011-2/+1
| | | | | Mainly an issue of taking care of a few remaining K&R function declarations.
* Fix ugly "definitions in header file" crudLinus Torvalds2005-10-011-3/+3
| | | | | | | Move various initializations into new "globals.c" file. Also mark some variables static, and fix up some trivial compiler and sparse warnings.
* Avoid various name clashes with curses and termcap headersLinus Torvalds2005-10-011-3/+3
| | | | | This allows us to include the proper headers, instead of declaring things (badly) by hand.
* Replace "WINDOW" type with "window_t"Linus Torvalds2005-10-011-2/+2
| | | | Starting to try to avoid name clashes with curses and friends.
* Lots of ANSI'fication and cleanupsLinus Torvalds2005-09-301-1/+2
| | | | | | Still tons of warnings with "-Wall", but now it's actually getting closer. It even compiles again.
* More ANSI'ficationLinus Torvalds2005-09-301-5/+0
| | | | | 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-87/+102
| | | | Bored? Me? Why do you ask?
* Run "indent -kr -i8" on the sourcesLinus Torvalds2005-09-301-127/+124
| | | | 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/+708
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.