- Fix nano not compiling with ENABLE_RCFILE BLE_TABCOMP (David Benbennick)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1425 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
5ea694ebd1
commit
5ec68628ce
|
@ -1,6 +1,10 @@
|
||||||
CVS code
|
CVS code
|
||||||
- General:
|
- General:
|
||||||
- Translation updates (see po/ChangeLog for details).
|
- Translation updates (see po/ChangeLog for details).
|
||||||
|
- nano.c:
|
||||||
|
main()
|
||||||
|
- Fix nano not compiling with ENABLE_RCFILE and DISABLE_TABCOMP
|
||||||
|
(David Benbennick).
|
||||||
- nano.1, nano.1.html:
|
- nano.1, nano.1.html:
|
||||||
- Add initialization file comments, change some options from
|
- Add initialization file comments, change some options from
|
||||||
bracketed to underlined to emphasize that they are not
|
bracketed to underlined to emphasize that they are not
|
||||||
|
|
6
nano.c
6
nano.c
|
@ -3287,9 +3287,15 @@ int main(int argc, char *argv[])
|
||||||
int tabsize_cpy = tabsize;
|
int tabsize_cpy = tabsize;
|
||||||
long flags_cpy = flags;
|
long flags_cpy = flags;
|
||||||
|
|
||||||
|
#ifndef DISABLE_OPERATINGDIR
|
||||||
operating_dir = NULL;
|
operating_dir = NULL;
|
||||||
|
#endif
|
||||||
|
#ifndef DISABLE_JUSTIFY
|
||||||
quotestr = NULL;
|
quotestr = NULL;
|
||||||
|
#endif
|
||||||
|
#ifndef DISABLE_SPELLER
|
||||||
alt_speller = NULL;
|
alt_speller = NULL;
|
||||||
|
#endif
|
||||||
|
|
||||||
do_rcfile();
|
do_rcfile();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue