qemacs-commit
[Top][All Lists]
Advanced

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

[Qemacs-commit] qemacs html.c


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs html.c
Date: Fri, 21 Apr 2017 08:26:45 -0400 (EDT)

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        17/04/21 08:26:44

Modified files:
        .              : html.c 

Log message:
        html: fix cursor movement functions
        - add default versions of move_word_left_right, move_bof 
          and move_eof functions

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/html.c?cvsroot=qemacs&r1=1.43&r2=1.44

Patches:
Index: html.c
===================================================================
RCS file: /sources/qemacs/qemacs/html.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -b -r1.43 -r1.44
--- html.c      18 Apr 2017 09:14:55 -0000      1.43
+++ html.c      21 Apr 2017 12:26:44 -0000      1.44
@@ -927,6 +927,9 @@
     .move_up_down = html_move_up_down,
     .move_bol = html_move_bol,
     .move_eol = html_move_eol,
+    .move_bof = text_move_bof,  /* XXX: should refine */
+    .move_eof = text_move_eof,  /* XXX: should refine */
+    .move_word_left_right = text_move_word_left_right,  /* XXX: refine */
     .scroll_up_down = html_scroll_up_down,
     .mouse_goto = html_mouse_goto,
     .write_char = text_write_char,



reply via email to

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