bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#43780: 27.1; defvaralias and define-obsolete-variable-alias


From: Drew Adams
Subject: bug#43780: 27.1; defvaralias and define-obsolete-variable-alias
Date: Sat, 3 Oct 2020 11:16:25 -0700 (PDT)

I have code that uses `inhibit-null-byte-detection'.  Emacs 27 has
(unfortunately) used `define-obsolete-variable-alias' to declare that
variable obsolete, in favor of the much more erudite and sophisticated
`inhibit-null-byte-detection'.

I don't want my code to forever give a compiler warning for that, and I
don't want to change my code to use (if (boundp...)(...)(...))
everywhere.  And I do want it to continue to be compatible with releases
before Emacs 27.

So I added this, hoping to get back `inhibit-null-byte-detection'
without the annoying gratuitous warning:

(when (> emacs-major-version 26)
  (defvaralias 'inhibit-null-byte-detection
               'inhibit-nul-byte-detection))

The `define-obsolete-variable-alias' is done by `emacs -Q', and my
`defvaralias' comes after that.  So I was hoping it would simply make
`inhibit-null-byte-detection' a recognized alias of the existing new
variable `inhibit-nul-byte-detection' (no?).  Alas, the byte-compiler
still warns that `inhibit-null-byte-detection' is obsolete.

Seems like a bug to me.  Why shouldn't the last alias declaration win?

Please tell me the best way to leave my code alone, using
`inhibit-null-byte-detection', and yet eliminate (only) this
byte-compiler warning.

Should I just use (put 'inhibit-null-byte-detection
'byte-obsolete-variable nil)?

Ideally I'd want to affect only byte-compilation of the given file, and
not want to globally change whether `inhibit-null-byte-detection' is
considered obsolete.

This is a serious question, not rhetorical.

(And please don't perform any more such gratuitous renamings that don't
really help anyone.  There are other, more important things to rename,
if someone is overeager enough to really want to start renaming names
that aren't perfect.)

In GNU Emacs 27.1 (build 1, x86_64-w64-mingw32)
 of 2020-08-12 built on CIRROCUMULUS
Repository revision: 86d8d76aa36037184db0b2897c434cdaab1a9ae8
Repository branch: HEAD
Windowing system distributor 'Microsoft Corp.', version 10.0.18362
System Description: Microsoft Windows 10 Pro (v10.0.1903.18362.1082)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]