summaryrefslogtreecommitdiff
path: root/textproc/p5-Text-BibTeX/patches/patch-ab
blob: fa4511798e7c544ce6d213302b39aa40f07ca431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$NetBSD: patch-ab,v 1.1.1.1 2001/02/27 23:39:55 jtb Exp $

--- btxs_support.c~	Thu Mar 23 14:09:25 2000
+++ btxs_support.c	Fri Sep 15 23:41:44 2000
@@ -160,7 +160,7 @@
 
       DBG_ACTION (2, printf ("  field=%s, value=\"%s\"\n", 
                              field_name, text));
-      sv_field_value = text ? newSVpv (text, 0) : &sv_undef;
+      sv_field_value = text ? newSVpv (text, 0) : &PL_sv_undef;
    }
 
    return sv_field_value;
@@ -297,7 +297,7 @@
    else
    {
       value = bt_get_text (top);
-      sv_value = value ? newSVpv (value, 0) : &sv_undef;
+      sv_value = value ? newSVpv (value, 0) : &PL_sv_undef;
    }
    hv_store (entry, "value", 5, sv_value, 0);