File: use-system-emacs-module.h.patch

package info (click to toggle)
emacs-libvterm 0.0.2%2Bgit20250113.056ad74-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 452 kB
  • sloc: ansic: 1,914; lisp: 1,514; sh: 57; makefile: 10
file content (40 lines) | stat: -rw-r--r-- 848 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From: Martin <debacle@debian.org>
Date: Mon, 27 May 2024 11:52:44 -0700
Subject: Use system emacs-module.h, not local copy

Origin: vendor
Forwarded: not-needed
Last-Update: 2023-11-04

Last-Update: 2023-11-04
---
 elisp.h        | 2 +-
 vterm-module.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/elisp.h b/elisp.h
index ba5e5fe..9e063ed 100644
--- a/elisp.h
+++ b/elisp.h
@@ -1,7 +1,7 @@
 #ifndef ELISP_H
 #define ELISP_H
 
-#include "emacs-module.h"
+#include <emacs-module.h>
 #include "vterm.h"
 
 // Emacs symbols
diff --git a/vterm-module.h b/vterm-module.h
index ebf3624..03b6871 100644
--- a/vterm-module.h
+++ b/vterm-module.h
@@ -1,7 +1,7 @@
 #ifndef VTERM_MODULE_H
 #define VTERM_MODULE_H
 
-#include "emacs-module.h"
+#include <emacs-module.h>
 #include <inttypes.h>
 #include <stdbool.h>
 #include <vterm.h>