[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Changes OK for Emacs 29?
From: |
Eli Zaretskii |
Subject: |
Re: Changes OK for Emacs 29? |
Date: |
Sat, 21 Jan 2023 10:24:14 +0200 |
> From: Po Lu <luangruo@yahoo.com>
> Cc: emacs-devel@gnu.org
> Date: Sat, 21 Jan 2023 08:28:44 +0800
>
> Here are the changes. It's always possible to tell backspace apart from
> delete, and RET from return on Haiku.
>
> diff --git a/lisp/simple.el b/lisp/simple.el
> index 4551b749d56..a38426060e0 100644
> --- a/lisp/simple.el
> +++ b/lisp/simple.el
> @@ -10317,7 +10317,7 @@ normal-erase-is-backspace-setup-frame
> (if (if (eq normal-erase-is-backspace 'maybe)
> (and (not noninteractive)
> (or (memq system-type '(ms-dos windows-nt))
> - (memq window-system '(w32 ns pgtk))
> + (memq window-system '(w32 ns pgtk haiku))
> (and (eq window-system 'x)
> (fboundp 'x-backspace-delete-keys-p)
> (x-backspace-delete-keys-p))
"Always" as in "even on TTY frames"? If so, why haiku is tested only
for GUI frames?
Anyway, this change is fine for the emacs-29 branch. Thanks.