You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While writing #311, I noticed that helpful calls the function local-variable-if-set-p without a second argument which means that it defaults to the current buffer (being the helpful buffer in most cases) even when helpful--associated-buffer is non-nil. Is this intentional?
Also, there are several places where symbol-value is called without with-current-buffer even when helpful--associated-buffer is non-nil. For example, in
The test if the local value is different will be against the value in the current buffer (the helpful buffer) rather than the associated buffer. So the original value will not be shown even if it is changed in the local buffer.
The text was updated successfully, but these errors were encountered:
While writing #311, I noticed that helpful calls the function
local-variable-if-set-p
without a second argument which means that it defaults to the current buffer (being the helpful buffer in most cases) even whenhelpful--associated-buffer
is non-nil. Is this intentional?Also, there are several places where
symbol-value
is called withoutwith-current-buffer
even whenhelpful--associated-buffer
is non-nil. For example, inhelpful/helpful.el
Lines 2199 to 2205 in 94c2533
The test if the local value is different will be against the value in the current buffer (the helpful buffer) rather than the associated buffer. So the original value will not be shown even if it is changed in the local buffer.
The text was updated successfully, but these errors were encountered: