File: fix_bug_1099292.patch

package info (click to toggle)
t-code 2%3A2.3.1-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,816 kB
  • sloc: lisp: 10,356; perl: 748; sh: 384; makefile: 138
file content (20 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Author: Kentaro HAYASHI <kenhys@xdump.org>
Description: fix t-code: FTBFS: make[2]: *** [Makefile:481: mazegaki.dic] Error 255
Forwarded: no
Bug-Debian: https://bugs.debian.org/1099292
Acked-by: HIGUCHI Daisuke (VDR dai) <dai@debian.org>
Last-Update: 2025-03-11

Index: t-code/lisp/tc-mkmzdic.el
===================================================================
--- t-code.orig/lisp/tc-mkmzdic.el
+++ t-code/lisp/tc-mkmzdic.el
@@ -107,7 +107,7 @@
 (defvar tc-mkmzdic-obarray nil)
 
 (defun tc-mkmzdic-init-obarray (size)
-  (setq tc-mkmzdic-obarray (make-vector size nil)))
+  (setq tc-mkmzdic-obarray (make-vector size 0)))
 
 (defun tc-mkmzdic-final-obarray ()
   (setq tc-mkmzdic-obarray nil))