Thierry is correct. Intern-soft is Emacs way to go from a string representation to the symbol itself (or nowhere, if there's no match). This is not new with shorthands. Should we document this in the Elisp manual? Maybe, but where? Shorthand section? Not sure. This is a feature of Lisp in general and the correct way to go from strings to symbols. Before shorthands we got away without this step for obvious reasons. Curiously, I was pleasantly surprised that much code of key symbol processing facilities was already using this indirection and shorthands automatically worked in those facilities because of that. João On Sat, Nov 12, 2022, 12:43 Eli Zaretskii wrote: > > From: Thierry Volpiatto > > Date: Sun, 06 Nov 2022 20:16:48 +0000 > > > > after having hard time getting the longhand name of a shorthand symbol > > at point (with regexp and the local value of read-symbol-shorthands) I > > discover it is easy to get this information with: > > > > (symbol-name (intern-soft (thing-at-point 'symbol))) > > > > Is this the right way to get this information and if so is it > > possible to document it? > > João, any comments? > > Thanks. >