]> git.wh0rd.org Git - nano.git/commitdiff
2013-04-12 Chris Allegretta <chrisa@asty.org>
authorChris Allegretta <chrisa@asty.org>
Fri, 12 Apr 2013 06:43:06 +0000 (06:43 +0000)
committerChris Allegretta <chrisa@asty.org>
Fri, 12 Apr 2013 06:43:06 +0000 (06:43 +0000)
        * src/files.c (do_insertfile): Check for saved cursor position when inserting a
          file as well.  Fixes Savannah bug 38600 reported by Craig Barnes.

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

ChangeLog
src/files.c

index 10d88a3cdd35c93ebc5aaf9e6410fc51ea403e3a..073e0d3e1461896493560b49884eb84f038733e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-12 Chris Allegretta <chrisa@asty.org>
+        * src/files.c (do_insertfile): Check for saved cursor position when inserting a
+          file as well.  Fixes Savannah bug 38600 reported by Craig Barnes.
+
 2013-04-07 Michael Berg <mike@berg-net.us>
        * do_cut_text - Fix copying (not cutting) text setting Modified state.  Fixes
          issue reported by Benno Schulenberg.
index 840695eb2a1b2e37caa9910f5e550af7a4aa9593..613d912c38f2098d2b532e222c322de1b9fc43c9 100644 (file)
@@ -1195,11 +1195,16 @@ void do_insertfile(
 #endif
 
 #ifdef ENABLE_MULTIBUFFER
-           if (ISSET(MULTIBUFFER))
+           if (ISSET(MULTIBUFFER)) {
                /* Update the screen to account for the current
                 * buffer. */
+               ssize_t savedposline, savedposcol;
+
                display_buffer();
-           else
+               if (!execute && ISSET(POS_HISTORY)
+                       && check_poshistory(answer, &savedposline, &savedposcol))
+                   do_gotolinecolumn(savedposline, savedposcol, FALSE, FALSE, FALSE, FALSE);
+           } else
 #endif
            {
                filestruct *top_save = openfile->fileage;
@@ -3195,7 +3200,7 @@ void load_poshistory(void)
        if (hist == NULL) {
            if (errno != ENOENT) {
                /* Don't save history when we quit. */
-               UNSET(HISTORYLOG);
+               UNSET(POS_HISTORY);
                history_error(N_("Error reading %s: %s"), nanohist,
                        strerror(errno));
            }