mirror of
https://github.com/rfivet/uemacs.git
synced 2025-02-20 23:17:13 -05:00
Move global curgoal to basic.
This commit is contained in:
parent
bd14ff374f
commit
ceac004e30
3
basic.c
3
basic.c
@ -28,7 +28,8 @@
|
|||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
||||||
|
|
||||||
int overlap = 0 ; /* line overlap in forw/back page */
|
int overlap = 0 ; /* line overlap in forw/back page */
|
||||||
|
int curgoal ; /* Goal for C-P, C-N */
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
4
basic.h
4
basic.h
@ -1,7 +1,9 @@
|
|||||||
#ifndef _BASIC_H_
|
#ifndef _BASIC_H_
|
||||||
#define _BASIC_H_
|
#define _BASIC_H_
|
||||||
|
|
||||||
extern int overlap ; /* line overlap in forw/back page */
|
extern int overlap ; /* line overlap in forw/back page */
|
||||||
|
extern int curgoal ; /* Goal for C-P, C-N */
|
||||||
|
|
||||||
|
|
||||||
int gotobol( int f, int n) ;
|
int gotobol( int f, int n) ;
|
||||||
int gotoeol( int f, int n) ;
|
int gotoeol( int f, int n) ;
|
||||||
|
@ -14,4 +14,3 @@ int abortc = CONTROL | 'G'; /* current abort command char */
|
|||||||
|
|
||||||
int thisflag; /* Flags, this command */
|
int thisflag; /* Flags, this command */
|
||||||
int lastflag; /* Flags, last command */
|
int lastflag; /* Flags, last command */
|
||||||
int curgoal; /* Goal for C-P, C-N */
|
|
||||||
|
@ -18,6 +18,4 @@ extern int abortc; /* current abort command char */
|
|||||||
extern int thisflag; /* Flags, this command */
|
extern int thisflag; /* Flags, this command */
|
||||||
extern int lastflag; /* Flags, last command */
|
extern int lastflag; /* Flags, last command */
|
||||||
|
|
||||||
extern int curgoal; /* Goal for C-P, C-N */
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user