diff options
| author | Dmitry Antipov | 2014-09-11 10:21:55 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-09-11 10:21:55 +0400 |
| commit | 6e5fd4936d0d56abe13352a6b80446e62fab040a (patch) | |
| tree | 9dca4408ab965e4e317d61bcc1203da61083e3af /src/lisp.h | |
| parent | b3ed13e84d591eeb2f0dde2e7c2558e7abcc66ca (diff) | |
| download | emacs-6e5fd4936d0d56abe13352a6b80446e62fab040a.tar.gz emacs-6e5fd4936d0d56abe13352a6b80446e62fab040a.zip | |
* lisp.h (make_local_string): Nitpick indent.
* print.c (Fprin1_to_string): Remove unused GCPROs.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 468e8f9fa1c..9cfcb244891 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -4594,8 +4594,8 @@ verify (sizeof (struct Lisp_Cons) == sizeof (union Aligned_Cons)); | |||
| 4594 | Lisp_Object string_; \ | 4594 | Lisp_Object string_; \ |
| 4595 | if (nbytes_ <= MAX_ALLOCA - sizeof (struct Lisp_String) - 1) \ | 4595 | if (nbytes_ <= MAX_ALLOCA - sizeof (struct Lisp_String) - 1) \ |
| 4596 | { \ | 4596 | { \ |
| 4597 | struct Lisp_String *ptr_ = alloca (sizeof (struct Lisp_String) + 1 \ | 4597 | struct Lisp_String *ptr_ \ |
| 4598 | + nbytes_); \ | 4598 | = alloca (sizeof (struct Lisp_String) + 1 + nbytes_); \ |
| 4599 | string_ = local_string_init (ptr_, data_, nbytes_); \ | 4599 | string_ = local_string_init (ptr_, data_, nbytes_); \ |
| 4600 | } \ | 4600 | } \ |
| 4601 | else \ | 4601 | else \ |