change enum "topmidbotnone" to "topmidnone", since we no longer have a
BOTTOM option git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1550 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
c97acfb2d6
commit
1356a0a72d
|
@ -35,7 +35,9 @@ CVS code -
|
||||||
- Translation updates (see po/ChangeLog for details).
|
- Translation updates (see po/ChangeLog for details).
|
||||||
- Since SAMELINEWRAP is only used in nano.c, make it a static
|
- Since SAMELINEWRAP is only used in nano.c, make it a static
|
||||||
variable in nano.c instead of a flag, and surround all
|
variable in nano.c instead of a flag, and surround all
|
||||||
wrap_reset() calls with DISABLE_WRAPPING #ifdefs. (DLR)
|
wrap_reset() calls with DISABLE_WRAPPING #ifdefs. (DLR)
|
||||||
|
- Change enum "topmidbotnone" to "topmidnone", as there's no
|
||||||
|
BOTTOM option anymore. (DLR)
|
||||||
- files.c:
|
- files.c:
|
||||||
do_browser()
|
do_browser()
|
||||||
- Some of the Pico compatibility options in the file browser
|
- Some of the Pico compatibility options in the file browser
|
||||||
|
|
|
@ -420,8 +420,8 @@ know what you're doing */
|
||||||
#define NOVIEW 0
|
#define NOVIEW 0
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CENTER, TOP, NONE
|
TOP, CENTER, NONE
|
||||||
} topmidbotnone;
|
} topmidnone;
|
||||||
|
|
||||||
/* Minimum editor window rows required for nano to work correctly */
|
/* Minimum editor window rows required for nano to work correctly */
|
||||||
#define MIN_EDITOR_ROWS 3
|
#define MIN_EDITOR_ROWS 3
|
||||||
|
|
|
@ -483,7 +483,7 @@ void update_cursor(void);
|
||||||
void center_cursor(void);
|
void center_cursor(void);
|
||||||
void edit_refresh(void);
|
void edit_refresh(void);
|
||||||
void edit_refresh_clearok(void);
|
void edit_refresh_clearok(void);
|
||||||
void edit_update(filestruct *fileptr, topmidbotnone location);
|
void edit_update(filestruct *fileptr, topmidnone location);
|
||||||
int statusq(int tabs, const shortcut *s, const char *def,
|
int statusq(int tabs, const shortcut *s, const char *def,
|
||||||
#ifndef NANO_SMALL
|
#ifndef NANO_SMALL
|
||||||
historyheadtype *history_list,
|
historyheadtype *history_list,
|
||||||
|
|
|
@ -1381,7 +1381,7 @@ void edit_refresh_clearok(void)
|
||||||
* Nice generic routine to update the edit buffer, given a pointer to the
|
* Nice generic routine to update the edit buffer, given a pointer to the
|
||||||
* file struct =)
|
* file struct =)
|
||||||
*/
|
*/
|
||||||
void edit_update(filestruct *fileptr, topmidbotnone location)
|
void edit_update(filestruct *fileptr, topmidnone location)
|
||||||
{
|
{
|
||||||
if (fileptr == NULL)
|
if (fileptr == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue