texinfo-commits
[Top][All Lists]
Advanced

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

[5569] handle_tag


From: Gavin D. Smith
Subject: [5569] handle_tag
Date: Sat, 17 May 2014 21:52:06 +0000

Revision: 5569
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5569
Author:   gavin
Date:     2014-05-17 21:52:05 +0000 (Sat, 17 May 2014)
Log Message:
-----------
handle_tag

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/info/display.c
    trunk/info/window.c
    trunk/info/window.h

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2014-05-17 20:58:36 UTC (rev 5568)
+++ trunk/ChangeLog     2014-05-17 21:52:05 UTC (rev 5569)
@@ -1,8 +1,8 @@
 2014-05-17  Gavin Smith  <address@hidden>
 
-       * info/window.c (info_tag)
+       * info/window.c (process_node_text, info_tag)
        * info/info-utils.c (printed_representation): do_tags argument
-       removed.
+       removed.  All callers updated.
        * info/tag.c (handle_tag): Removed.
 
 2014-05-17  Gavin Smith  <address@hidden>

Modified: trunk/info/display.c
===================================================================
--- trunk/info/display.c        2014-05-17 20:58:36 UTC (rev 5568)
+++ trunk/info/display.c        2014-05-17 21:52:05 UTC (rev 5569)
@@ -227,7 +227,6 @@
       line_index = process_node_text (win,
                                      win->node->contents
                                         + win->line_starts[win->pagetop],
-                                     1,
                                      display_node_text);
       if (display_was_interrupted_p)
        return;

Modified: trunk/info/window.c
===================================================================
--- trunk/info/window.c 2014-05-17 20:58:36 UTC (rev 5568)
+++ trunk/info/window.c 2014-05-17 21:52:05 UTC (rev 5569)
@@ -845,7 +845,7 @@
   if (!window->node)
     return;
   
-  process_node_text (window, window->node->contents, 0, _calc_line_starts);
+  process_node_text (window, window->node->contents, _calc_line_starts);
 
   window_line_map_init (window);
 }

Modified: trunk/info/window.h
===================================================================
--- trunk/info/window.h 2014-05-17 20:58:36 UTC (rev 5568)
+++ trunk/info/window.h 2014-05-17 21:52:05 UTC (rev 5569)
@@ -274,11 +274,11 @@
 extern int window_chars_to_goal (WINDOW *win, int goal);
 
 extern size_t process_node_text
-        (WINDOW *win, char *start, int do_tags,
+        (WINDOW *win, char *start,
          int (*fun) (WINDOW *, size_t, size_t, size_t, char *,
                     size_t, size_t));
 
-int info_tag (mbi_iterator_t iter, int handle, size_t *plen);
+int info_tag (mbi_iterator_t iter, size_t *plen);
 
 extern void window_compute_line_map (WINDOW *win);
 




reply via email to

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