nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit b2b6976bd940c64cc73e00f079d231852a0870f5
parent 7a4aaa53a16a158a2560603d5b4c5a8bd24e7a33
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 16 Jun 2005 02:13:10 +0000

change the SMOOTHSCROLL flag to the SMOOTH_SCROLL flag


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2692 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 1+
Msrc/global.c | 2+-
Msrc/move.c | 8++++----
Msrc/nano.c | 2+-
Msrc/nano.h | 2+-
Msrc/rcfile.c | 2+-
Msrc/winio.c | 2+-
7 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -95,6 +95,7 @@ CVS code - toggle_init(), usage(), do_tab(), main(), nanorc.sample, nano.1, nanorc.5, and nano.texi. (DLR, suggested by many people) + - Change the SMOOTHSCROLL flag to the SMOOTH_SCROLL flag. (DLR) - Change the NO_UTF8 flag to the USE_UTF8 flag, and reverse its meaning. (DLR) - chars.c: diff --git a/src/global.c b/src/global.c @@ -1138,7 +1138,7 @@ void toggle_init(void) toggle_init_one(TOGGLE_BACKUP_KEY, N_("Backup files"), BACKUP_FILE); toggle_init_one(TOGGLE_SMOOTH_KEY, N_("Smooth scrolling"), - SMOOTHSCROLL); + SMOOTH_SCROLL); toggle_init_one(TOGGLE_SMARTHOME_KEY, N_("Smart home key"), SMART_HOME); #ifdef ENABLE_COLOR diff --git a/src/move.c b/src/move.c @@ -107,7 +107,7 @@ void do_page_up(void) /* If we're in smooth scrolling mode and there's at least one * page of text left, move the current line of the edit window * up a page. */ - if (ISSET(SMOOTHSCROLL) && current->lineno > editwinrows - 2) { + if (ISSET(SMOOTH_SCROLL) && current->lineno > editwinrows - 2) { int i; for (i = 0; i < editwinrows - 2; i++) current = current->prev; @@ -153,7 +153,7 @@ void do_page_down(void) /* If we're in smooth scrolling mode and there's at least one * page of text left, move the current line of the edit window * down a page. */ - if (ISSET(SMOOTHSCROLL) && current->lineno + editwinrows - 2 <= + if (ISSET(SMOOTH_SCROLL) && current->lineno + editwinrows - 2 <= filebot->lineno) { int i; for (i = 0; i < editwinrows - 2; i++) @@ -201,7 +201,7 @@ void do_up(void) if (current_y == 0) edit_scroll(UP, #ifndef NANO_SMALL - ISSET(SMOOTHSCROLL) ? 1 : + ISSET(SMOOTH_SCROLL) ? 1 : #endif editwinrows / 2); @@ -234,7 +234,7 @@ void do_down(void) if (current_y == editwinrows - 1) edit_scroll(DOWN, #ifndef NANO_SMALL - ISSET(SMOOTHSCROLL) ? 1 : + ISSET(SMOOTH_SCROLL) ? 1 : #endif editwinrows / 2); diff --git a/src/nano.c b/src/nano.c @@ -4255,7 +4255,7 @@ int main(int argc, char **argv) #endif #ifndef NANO_SMALL case 'S': - SET(SMOOTHSCROLL); + SET(SMOOTH_SCROLL); break; #endif case 'T': diff --git a/src/nano.h b/src/nano.h @@ -290,7 +290,7 @@ typedef struct syntaxtype { #define CUT_TO_END (1<<13) #define REVERSE_SEARCH (1<<14) #define MULTIBUFFER (1<<15) -#define SMOOTHSCROLL (1<<16) +#define SMOOTH_SCROLL (1<<16) #define DISABLE_CURPOS (1<<17) /* Damn, we still need it. */ #define REBIND_DELETE (1<<18) #define NO_CONVERT (1<<19) diff --git a/src/rcfile.c b/src/rcfile.c @@ -81,7 +81,7 @@ const static rcoption rcopts[] = { {"rebinddelete", REBIND_DELETE}, #ifndef NANO_SMALL {"smarthome", SMART_HOME}, - {"smooth", SMOOTHSCROLL}, + {"smooth", SMOOTH_SCROLL}, #endif #ifndef DISABLE_SPELLER {"speller", 0}, diff --git a/src/winio.c b/src/winio.c @@ -3522,7 +3522,7 @@ void edit_refresh(void) * is no danger of getting an infinite loop. */ edit_update( #ifndef NANO_SMALL - ISSET(SMOOTHSCROLL) ? NONE : + ISSET(SMOOTH_SCROLL) ? NONE : #endif CENTER); else {