1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

uemacs: convert typedef struct KILL to struct kill.

Signed-off-by: Thiago Farina <tfransosi@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Thiago Farina
2010-08-08 23:03:42 -03:00
committed by Linus Torvalds
parent c206895b9e
commit 1f271323f8
4 changed files with 12 additions and 12 deletions

View File

@@ -609,17 +609,17 @@ struct name_bind {
int (*n_func)(int, int); /* function name is bound to */
};
/* The editor holds deleted text chunks in the KILL buffer. The
/* The editor holds deleted text chunks in the struct kill buffer. The
kill buffer is logically a stream of ascii characters, however
due to its unpredicatable size, it gets implemented as a linked
list of chunks. (The d_ prefix is for "deleted" text, as k_
was taken up by the keycode structure)
*/
typedef struct KILL {
struct KILL *d_next; /* link to next chunk, NULL if last */
struct kill {
struct kill *d_next; /* link to next chunk, NULL if last */
char d_chunk[KBLOCK]; /* deleted text */
} KILL;
};
/* When emacs' command interpetor needs to get a variable's name,
rather than it's value, it is passed back as a VDESC variable