[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * info/nodes.c (info_node_of_tag_ext): do not cop
From: |
Patrice Dumas |
Subject: |
branch master updated: * info/nodes.c (info_node_of_tag_ext): do not copy tag flags to node. The only flag set in tag is N_SeenBySearch and it is not used in nodes. |
Date: |
Sat, 12 Oct 2024 09:45:45 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 2a327ac9f0 * info/nodes.c (info_node_of_tag_ext): do not copy tag
flags to node. The only flag set in tag is N_SeenBySearch and it is not used in
nodes.
2a327ac9f0 is described below
commit 2a327ac9f02b5be855e927b3f9864973576b1272
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Oct 12 15:45:36 2024 +0200
* info/nodes.c (info_node_of_tag_ext): do not copy tag flags to node.
The only flag set in tag is N_SeenBySearch and it is not used in nodes.
---
info/nodes.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/info/nodes.c b/info/nodes.c
index cb68dfb8d1..5a1c0ed800 100644
--- a/info/nodes.c
+++ b/info/nodes.c
@@ -1300,7 +1300,6 @@ info_node_of_tag_ext (FILE_BUFFER *fb, TAG **tag_ptr, int
fast)
node->contents += skip_node_separator (node->contents);
node->nodelen = tag->cache.nodelen;
node->nodename = tag->nodename;
- node->flags = tag->flags;
node->fullpath = parent->fullpath;
if (parent != subfile)
- branch master updated: * info/nodes.c (info_node_of_tag_ext): do not copy tag flags to node. The only flag set in tag is N_SeenBySearch and it is not used in nodes.,
Patrice Dumas <=