diff options
| author | jixiuf <jixiuf@qq.com> | 2021-02-17 15:37:06 +0800 |
|---|---|---|
| committer | jixiuf <jixiuf@qq.com> | 2021-02-17 15:37:06 +0800 |
| commit | e19da61668783239e47b1a7390fca10f38ceffa9 (patch) | |
| tree | e4925942b1e0222e86d604c72fcac28f769c1d2c /vterm-module.h | |
| parent | f93553d9916f90fcfe7750d1a9e3c3ab28022269 (diff) | |
run clang-format *.[ch]
Diffstat (limited to 'vterm-module.h')
| -rw-r--r-- | vterm-module.h | 9 |
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 */ |
