diff options
| author | Mattias EngdegÄrd | 2022-07-08 18:24:26 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-07-08 18:26:28 +0200 |
| commit | 1c300c983f60a15413cfd0b31abb7d8294a1a5cc (patch) | |
| tree | 9460aa3ae871aa9b4c9d9412cf89cf74faaca1f5 /src | |
| parent | 58790a5266c60a935e6f6f1c3bda7c8fc7b72a6d (diff) | |
| download | emacs-1c300c983f60a15413cfd0b31abb7d8294a1a5cc.tar.gz emacs-1c300c983f60a15413cfd0b31abb7d8294a1a5cc.zip | |
Remove unused member of internal struct
* src/fns.c (struct textprop_rec, concat_to_string): Remove `from`.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 0 insertions, 2 deletions
| @@ -712,7 +712,6 @@ the same empty object instead of its copy. */) | |||
| 712 | struct textprop_rec | 712 | struct textprop_rec |
| 713 | { | 713 | { |
| 714 | ptrdiff_t argnum; /* refer to ARGS (arguments of `concat') */ | 714 | ptrdiff_t argnum; /* refer to ARGS (arguments of `concat') */ |
| 715 | ptrdiff_t from; /* refer to ARGS[argnum] (argument string) */ | ||
| 716 | ptrdiff_t to; /* refer to VAL (the target string) */ | 715 | ptrdiff_t to; /* refer to VAL (the target string) */ |
| 717 | }; | 716 | }; |
| 718 | 717 | ||
| @@ -843,7 +842,6 @@ concat_to_string (ptrdiff_t nargs, Lisp_Object *args) | |||
| 843 | if (string_intervals (arg)) | 842 | if (string_intervals (arg)) |
| 844 | { | 843 | { |
| 845 | textprops[num_textprops].argnum = i; | 844 | textprops[num_textprops].argnum = i; |
| 846 | textprops[num_textprops].from = 0; | ||
| 847 | textprops[num_textprops].to = toindex; | 845 | textprops[num_textprops].to = toindex; |
| 848 | num_textprops++; | 846 | num_textprops++; |
| 849 | } | 847 | } |