1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-13 14:50:41 +00:00

Remove region from efunc.

This commit is contained in:
Renaud 2013-05-28 13:18:47 +08:00
parent b971f265fc
commit 7816f96508
4 changed files with 3 additions and 3 deletions

View File

@ -15,6 +15,7 @@
#include "isearch.h" #include "isearch.h"
#include "line.h" #include "line.h"
#include "random.h" #include "random.h"
#include "region.h"
#include "search.h" #include "search.h"
#include "spawn.h" #include "spawn.h"
#include "window.h" #include "window.h"

View File

@ -20,9 +20,6 @@
/* display.c */ /* display.c */
#include "display.h" #include "display.h"
/* region.c */
#include "region.h"
/* posix.c */ /* posix.c */
#include "termio.h" #include "termio.h"

View File

@ -15,6 +15,7 @@
#include "isearch.h" #include "isearch.h"
#include "line.h" #include "line.h"
#include "main.h" #include "main.h"
#include "region.h"
#include "random.h" #include "random.h"
#include "search.h" #include "search.h"
#include "spawn.h" #include "spawn.h"

1
word.c
View File

@ -18,6 +18,7 @@
#include "line.h" #include "line.h"
#include "main.h" #include "main.h"
#include "random.h" #include "random.h"
#include "region.h"
/* Word wrap on n-spaces. Back-over whatever precedes the point on the current /* Word wrap on n-spaces. Back-over whatever precedes the point on the current
* line and stop on the first word-break or the beginning of the line. If we * line and stop on the first word-break or the beginning of the line. If we