1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-24 22:24:02 -04:00

Move global buffer pointers and gmode to buffer.

This commit is contained in:
2013-10-08 17:16:27 +08:00
parent 83e10e36d5
commit 83a0cc9d67
4 changed files with 11 additions and 8 deletions

View File

@@ -23,6 +23,10 @@
#include "window.h"
struct buffer *curbp ; /* Current buffer */
struct buffer *bheadp ; /* Head of list of buffers */
struct buffer *blistp ; /* Buffer for C-X C-B */
const char *modename[] = { /* name of modes */
"Wrap", "Cmode", "Spell", "Exact", "View", "Over",
"Magic",
@@ -34,6 +38,8 @@ const char *modename[] = { /* name of modes */
"Asave", "Utf-8", "Dos"
} ;
int gmode = 0 ; /* global editor mode */
static const char modecode[] = "WCSEVOMYAUD" ; /* letters to represent modes */