Commit 450bb328 450bb3283ddfe3aa5021147ba0d2bb33251d43e1 by Sergey Poznyakoff

(realcursor): Removed. The position of the point is kept in the cursor variable.

1 parent 7221f832
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
20 /* Global variables and constants*/ 20 /* Global variables and constants*/
21 mailbox_t mbox; 21 mailbox_t mbox;
22 unsigned int cursor; 22 unsigned int cursor;
23 unsigned int realcursor;
24 size_t total; 23 size_t total;
25 FILE *ofile; 24 FILE *ofile;
26 int interactive; 25 int interactive;
...@@ -219,7 +218,6 @@ main (int argc, char **argv) ...@@ -219,7 +218,6 @@ main (int argc, char **argv)
219 218
220 ofile = stdout; 219 ofile = stdout;
221 cursor = 1; 220 cursor = 1;
222 realcursor = cursor;
223 221
224 /* Native Language Support */ 222 /* Native Language Support */
225 mu_init_nls (); 223 mu_init_nls ();
......