emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/xdisp.c


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Wed, 11 Dec 2002 16:21:18 -0500

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.794 emacs/src/xdisp.c:1.795
*** emacs/src/xdisp.c:1.794     Sun Dec  8 20:56:05 2002
--- emacs/src/xdisp.c   Wed Dec 11 16:21:17 2002
***************
*** 11732,11738 ****
  
          /* Set the cursor.  */
          row = row_containing_pos (w, PT, r0, NULL, 0);
!         set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
          return 1;
        }
      }
--- 11732,11739 ----
  
          /* Set the cursor.  */
          row = row_containing_pos (w, PT, r0, NULL, 0);
!         if (row)
!           set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
          return 1;
        }
      }
***************
*** 11770,11776 ****
  
          /* Set the cursor.  */
          row = row_containing_pos (w, PT, r0, NULL, 0);
!         set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
          return 2;
        }
      }
--- 11771,11778 ----
  
          /* Set the cursor.  */
          row = row_containing_pos (w, PT, r0, NULL, 0);
!         if (row)
!           set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
          return 2;
        }
      }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]