diff options
| author | Juanma Barranquero | 2015-11-19 11:02:38 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2015-11-19 11:02:38 +0100 |
| commit | 3c6a085351d28361f6d9ffd823c449760627c09c (patch) | |
| tree | 9ba5ef0957bdb2128da80eea6cc3b8511ac0e70c /src | |
| parent | 981335073b10b4ba47b612178fa94faad56b67df (diff) | |
| download | emacs-3c6a085351d28361f6d9ffd823c449760627c09c.tar.gz emacs-3c6a085351d28361f6d9ffd823c449760627c09c.zip | |
* src/lread.c (Fload): Remove unused variable `size'
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 4a89d7d8133..c0fa0d06b9c 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1084,7 +1084,6 @@ Return t if the file exists and loads successfully. */) | |||
| 1084 | if (! NILP (must_suffix)) | 1084 | if (! NILP (must_suffix)) |
| 1085 | { | 1085 | { |
| 1086 | /* Don't insist on adding a suffix if FILE already ends with one. */ | 1086 | /* Don't insist on adding a suffix if FILE already ends with one. */ |
| 1087 | ptrdiff_t size = SBYTES (file); | ||
| 1088 | if (suffix_p (file, ".el") || suffix_p (file, ".elc")) | 1087 | if (suffix_p (file, ".el") || suffix_p (file, ".elc")) |
| 1089 | must_suffix = Qnil; | 1088 | must_suffix = Qnil; |
| 1090 | /* Don't insist on adding a suffix | 1089 | /* Don't insist on adding a suffix |