Commit 6967eec4 authored by Robert Siemborski's avatar Robert Siemborski
Browse files

Bill's TABSIZE fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@93 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 8 additions and 3 deletions
+8 -3
Current CVS:
- nano.c:
main():
- TABSIZE now set before first call to edit_refresh (Bill Soudan)
nano-0.9.12 - 07/07/2000
- all:
- New regexp search feature by Bill Soudan. New flags USE_REGEXP
......
......@@ -1757,14 +1757,14 @@ int main(int argc, char *argv[])
else
edit_update(fileage);
edit_refresh();
reset_cursor();
#ifdef HAVE_TABSIZE
if (usrtabsize > 0)
TABSIZE = usrtabsize;
#endif
edit_refresh();
reset_cursor();
while (1) {
kbinput = wgetch(edit);
if (kbinput == 27) { /* Grab Alt-key stuff first */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment