all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Noam Postavsky <npostavs@gmail.com>
To: <andpuke@foxmail.com>
Cc: 36219@debbugs.gnu.org
Subject: bug#36219: GNU Emacs 26.1 --eval rejects trailing whitespace
Date: Sat, 15 Jun 2019 09:33:10 -0400	[thread overview]
Message-ID: <87ftobynvt.fsf@gmail.com> (raw)
In-Reply-To: <tencent_91A99E388C179D45ABA5BF4CB78B6E24C707@qq.com> (andpuke@foxmail.com's message of "Sat, 15 Jun 2019 10:39:10 +0800")

[-- Attachment #1: Type: text/plain, Size: 874 bytes --]

severity 36219 minor
tags 36219 + patch
quit

<andpuke@foxmail.com> writes:

> Since commit a90d5e6309c0306d931d398506b242c3eb4f40d7 which fixes bug #23159
> the `--eval' command line option signals (error "Trailing garbage following
> expression: %s") on more than one expression recevied.

> This causes some old shell script snippets which has trailing newline for
> formatting no longer works, such as the follow script from
> https://orgmode.org/manual/Batch-Execution.html#Batch-Execution


> Since `eval-expression' accepts additional white space and newlines after a
> single expression, this mismatch behavior of `--eval' should be considered as a
> bug.
>
> My proposed fix is apply `string-trim-right` to received string of expression.
>

I think I'd prefer checking the trailing garbage for whitespace, which
is what eval-expression does.  See following patch:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch --]
[-- Type: text/x-diff, Size: 1220 bytes --]

From c067e710eb7d6e1606f0cdd76e37fe84104d33d8 Mon Sep 17 00:00:00 2001
From: Noam Postavsky <npostavs@gmail.com>
Date: Sat, 15 Jun 2019 08:40:23 -0400
Subject: [PATCH] Allow trailing whitespace in --eval argument (Bug#36219)

* lisp/startup.el (command-line-1): Don't complain about trailing
garbage if it's only space, tab, or newline characters.
---
 lisp/startup.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/startup.el b/lisp/startup.el
index 32051c232c..f5463f2c93 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -2376,7 +2376,9 @@ (defun command-line-1 (args-left)
                             (read-data (read-from-string str-expr))
                             (expr (car read-data))
                             (end (cdr read-data)))
-                       (unless (= end (length str-expr))
+                       ;; Allow same trailing chars as minibuf.c's
+                       ;; `string_to_object'.
+                       (unless (string-match-p "[\s\t\n]*\\'" str-expr end)
                          (error "Trailing garbage following expression: %s"
                                 (substring str-expr end)))
                        (eval expr)))
-- 
2.11.0


[-- Attachment #3: Type: text/plain, Size: 144 bytes --]


This is a regression from Emacs 25, and the fix looks pretty safe to me;
although the bug isn't especially severe.  Should it go to emacs-26?


  reply	other threads:[~2019-06-15 13:33 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-15  2:39 bug#36219: GNU Emacs 26.1 --eval rejects trailing whitespace �o�ӡ����Yһ��
2019-06-15 13:33 ` Noam Postavsky [this message]
2019-06-15 13:54   ` Eli Zaretskii
2019-06-15 14:06     ` Noam Postavsky
2019-06-15 14:24       ` Eli Zaretskii
2019-06-15 21:46         ` Noam Postavsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ftobynvt.fsf@gmail.com \
    --to=npostavs@gmail.com \
    --cc=36219@debbugs.gnu.org \
    --cc=andpuke@foxmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.