mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16:23 -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"
|
||||
|
||||
|
||||
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_
|
||||
#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 gotoeol( int f, int n) ;
|
||||
|
@ -14,4 +14,3 @@ int abortc = CONTROL | 'G'; /* current abort command char */
|
||||
|
||||
int thisflag; /* Flags, this command */
|
||||
int lastflag; /* Flags, last command */
|
||||
int curgoal; /* Goal for C-P, C-N */
|
||||
|
Loading…
Reference in New Issue
Block a user