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

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

bug#13670: 24.3.50; `autoload-generate-file-autoloads' off-by-one bug


From: Lars Ingebrigtsen
Subject: bug#13670: 24.3.50; `autoload-generate-file-autoloads' off-by-one bug
Date: Fri, 29 Apr 2016 00:29:11 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

"Drew Adams" <drew.adams@oracle.com> writes:

> This source code line of `autoload-generate-file-autoloads':
>
>  (if (= (char-after (1+ (point))) ? )
>
> should be replaced by this:
>
>  (if (= (char-after (point)) ? )

[...]

> You can use cookies like this:
>
> ;;;###autoload (autoload 'icicle-mode "icicles" 
> ;;;###autoload"Icicle mode: Toggle minibuffer input completion and cycling.
> ;;;###autoload Non-nil prefix ARG turns mode on if ARG > 0, else off.
> ;;;###autoload It is a global minor mode.  It binds minibuffer keys."
> ;;;###autoload t nil)

If we make this change, then autoloads that want to have a single space
at the start of the string (and use this syntax to do that) would then
not have that space?

Have you examined the sources to see whether that's potentially a
problem?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





reply via email to

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