aboutsummaryrefslogtreecommitdiff
path: root/vterm-module.h
diff options
context:
space:
mode:
Diffstat (limited to 'vterm-module.h')
-rw-r--r--vterm-module.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/vterm-module.h b/vterm-module.h
index e642b76..5cb1f6d 100644
--- a/vterm-module.h
+++ b/vterm-module.h
@@ -31,9 +31,9 @@ typedef struct ScrollbackLine {
} ScrollbackLine;
typedef struct ElispCodeListNode {
- char* code;
+ char *code;
size_t code_len;
- struct ElispCodeListNode* next;
+ struct ElispCodeListNode *next;
} ElispCodeListNode;
/* c , p , q , s , 0 , 1 , 2 , 3 , 4 , 5 , 6 , and 7 */
@@ -79,8 +79,9 @@ typedef struct Term {
// Single-linked list of elisp_code.
// Newer commands are added at the tail.
- ElispCodeListNode* elisp_code_first;
- ElispCodeListNode** elisp_code_p_insert; // pointer to the position where new node should be inserted
+ ElispCodeListNode *elisp_code_first;
+ ElispCodeListNode **elisp_code_p_insert; // pointer to the position where new
+ // node should be inserted
/* c , p , q , s , 0 , 1 , 2 , 3 , 4 , 5 , 6 , and 7 */
/* clipboard, primary, secondary, select, or cut buffers 0 through 7 */