unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#42590: 27.0.91; Advice error for interactive commands
@ 2020-07-29  1:58 Yuan Fu
  2020-07-29 17:41 ` Michael Heerdegen
  2020-07-29 19:22 ` bug#42590: Fwd: " Yuan Fu
  0 siblings, 2 replies; 4+ messages in thread
From: Yuan Fu @ 2020-07-29  1:58 UTC (permalink / raw)
  To: 42590


To reproduce the issue, evaluate

(advice-add 'backward-delete-char-untabify :after 'ignore)

and hit backspace (which should call backward-delete-char-untabify), and
an error occurs: apply: Wrong number of arguments: (1 . 2), 0

Backtrace:

Debugger entered--Lisp error: (wrong-number-of-arguments (1 . 2) 0)
  #f(compiled-function (arg &optional killp) "Delete characters backward, changing tabs into spaces.\nThe exact behavior depends on `backward-delete-char-untabify-method'.\nDelete ARG chars, and kill (save in kill ring) if KILLP is non-nil.\nInteractively, ARG is the prefix arg (default 1)\nand KILLP is t if a prefix arg was specified." (interactive "*p\nP") #<bytecode 0x1ffc4145c759>)()
  apply(#f(compiled-function (arg &optional killp) "Delete characters backward, changing tabs into spaces.\nThe exact behavior depends on `backward-delete-char-untabify-method'.\nDelete ARG chars, and kill (save in kill ring) if KILLP is non-nil.\nInteractively, ARG is the prefix arg (default 1)\nand KILLP is t if a prefix arg was specified." (interactive "*p\nP") #<bytecode 0x1ffc4145c759>) nil)
  backward-delete-char-untabify()
  funcall-interactively(backward-delete-char-untabify)
  call-interactively(backward-delete-char-untabify nil nil)
  command-execute(backward-delete-char-untabify)



In GNU Emacs 27.0.91 (build 1, x86_64-apple-darwin19.5.0, NS appkit-1894.50 Version 10.15.5 (Build 19F101))
of 2020-07-28 built on Brown
Windowing system distributor 'Apple', version 10.3.1894
System Description:  Mac OS X 10.15.5

Recent messages:
Loading uniquify...done
Loading electric...done
Loading emacs-lisp/eldoc...done
Loading cus-start...done
Loading tooltip...done
Loading /Applications/Emacs.app/Contents/Resources/lisp/leim/leim-list.el (source)...done
Finding pointers to doc strings...done
For information about GNU Emacs and the GNU system, type C-h C-a.
Loading loadup.el (source)...done
Mark set [2 times]
apply: Wrong number of arguments: (1 . 2), 0
Configured using:
'configure --with-modules --with-pdumper=yes
--oldincludedir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libxml2/
--with-ns
PKG_CONFIG_PATH=/usr/local/Cellar/zlib/1.2.8/lib/pkgconfig:/usr/local/lib/pkgconfig:/opt/X11/lib/pkgconfig'

Configured features:
RSVG DBUS GLIB NOTIFY KQUEUE ACL GNUTLS LIBXML2 ZLIB TOOLKIT_SCROLL_BARS
XIM NS MODULES THREADS JSON PDUMPER LCMS2

Important settings:
  value of $LC_CTYPE: UTF-8
  value of $LANG: en_CN.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Load-path shadows:
/Applications/Emacs.app/Contents/Resources/lisp/mail/metamail hides /Applications/Emacs.app/Contents/Resources/lisp/obsolete/metamail
/Applications/Emacs.app/Contents/Resources/lisp/sb-image hides /Applications/Emacs.app/Contents/Resources/lisp/obsolete/sb-image

Features:
(shadow sort mail-extr emacsbug message rmc puny dired dired-loaddefs
format-spec rfc822 mml easymenu mml-sec password-cache epa derived epg
epg-config gnus-util rmail rmail-loaddefs text-property-search time-date
subr-x seq byte-opt gv bytecomp byte-compile cconv mm-decode mm-bodies
mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader cl-loaddefs
cl-lib sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils
tooltip cus-start eldoc electric uniquify ediff-hook vc-hooks
lisp-float-type mwheel term/ns-win ns-win ucs-normalize mule-util
term/common-win tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode elisp-mode lisp-mode
prog-mode register page tab-bar menu-bar rfn-eshadow isearch timer
select scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame minibuffer cl-generic cham georgian utf-8-lang
misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms
cp51932 hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese composite charscript charprop case-table epa-hook
jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice loaddefs
button faces cus-face macroexp files text-properties overlay sha1 md5
base64 format env code-pages mule custom widget hashtable-print-readable
backquote threads dbusbind kqueue cocoa ns lcms2 multi-tty
make-network-process emacs)

Memory information:
((conses 16 269358 17394)
(symbols 48 20582 1)
(strings 32 55830 2233)
(string-bytes 1 2366984)
(vectors 16 51368)
(vector-slots 8 1408784 68426)
(floats 8 184 73)
(intervals 56 234 0)
(buffers 1000 11))





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#42590: 27.0.91; Advice error for interactive commands
  2020-07-29  1:58 bug#42590: 27.0.91; Advice error for interactive commands Yuan Fu
@ 2020-07-29 17:41 ` Michael Heerdegen
  2020-07-29 19:21   ` Yuan Fu
  2020-07-29 19:22 ` bug#42590: Fwd: " Yuan Fu
  1 sibling, 1 reply; 4+ messages in thread
From: Michael Heerdegen @ 2020-07-29 17:41 UTC (permalink / raw)
  To: Yuan Fu; +Cc: 42590

Yuan Fu <casouri@gmail.com> writes:

> To reproduce the issue, evaluate
>
> (advice-add 'backward-delete-char-untabify :after 'ignore)
>
> and hit backspace (which should call backward-delete-char-untabify), and
> an error occurs: apply: Wrong number of arguments: (1 . 2), 0

Had to think about it.  But it's expected I think: `ignore' is
interactive, and as documented, its interactive spec overwrites the
interactive spec of the original function.  And it doesn't fit.

So everything behaves as documented, it's your specified after advice
that causes the problem.  Right?

Michael.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#42590: 27.0.91; Advice error for interactive commands
  2020-07-29 17:41 ` Michael Heerdegen
@ 2020-07-29 19:21   ` Yuan Fu
  0 siblings, 0 replies; 4+ messages in thread
From: Yuan Fu @ 2020-07-29 19:21 UTC (permalink / raw)
  To: Michael Heerdegen; +Cc: 42590



> On Jul 29, 2020, at 1:41 PM, Michael Heerdegen <michael_heerdegen@web.de> wrote:
> 
> Yuan Fu <casouri@gmail.com> writes:
> 
>> To reproduce the issue, evaluate
>> 
>> (advice-add 'backward-delete-char-untabify :after 'ignore)
>> 
>> and hit backspace (which should call backward-delete-char-untabify), and
>> an error occurs: apply: Wrong number of arguments: (1 . 2), 0
> 
> Had to think about it.  But it's expected I think: `ignore' is
> interactive, and as documented, its interactive spec overwrites the
> interactive spec of the original function.  And it doesn't fit.
> 
> So everything behaves as documented, it's your specified after advice
> that causes the problem.  Right?
> 
> Michael.

Thanks. I first advised with another interactive function and found this problem. Ignore is just an example. Once I remove the advice the problem went away. I’ll close this report now. 

Yuan




^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#42590: Fwd: bug#42590: 27.0.91; Advice error for interactive commands
  2020-07-29  1:58 bug#42590: 27.0.91; Advice error for interactive commands Yuan Fu
  2020-07-29 17:41 ` Michael Heerdegen
@ 2020-07-29 19:22 ` Yuan Fu
  1 sibling, 0 replies; 4+ messages in thread
From: Yuan Fu @ 2020-07-29 19:22 UTC (permalink / raw)
  To: 42590-done

[-- Attachment #1: Type: text/plain, Size: 1232 bytes --]



> Begin forwarded message:
> 
> From: Yuan Fu <casouri@gmail.com>
> Subject: Re: bug#42590: 27.0.91; Advice error for interactive commands
> Date: July 29, 2020 at 3:21:52 PM GMT-4
> To: Michael Heerdegen <michael_heerdegen@web.de>
> Cc: 42590@debbugs.gnu.org
> 
> 
> 
>> On Jul 29, 2020, at 1:41 PM, Michael Heerdegen <michael_heerdegen@web.de> wrote:
>> 
>> Yuan Fu <casouri@gmail.com> writes:
>> 
>>> To reproduce the issue, evaluate
>>> 
>>> (advice-add 'backward-delete-char-untabify :after 'ignore)
>>> 
>>> and hit backspace (which should call backward-delete-char-untabify), and
>>> an error occurs: apply: Wrong number of arguments: (1 . 2), 0
>> 
>> Had to think about it.  But it's expected I think: `ignore' is
>> interactive, and as documented, its interactive spec overwrites the
>> interactive spec of the original function.  And it doesn't fit.
>> 
>> So everything behaves as documented, it's your specified after advice
>> that causes the problem.  Right?
>> 
>> Michael.
> 
> Thanks. I first advised with another interactive function and found this problem. Ignore is just an example. Once I remove the advice the problem went away. I’ll close this report now. 
> 
> Yuan


[-- Attachment #2: Type: text/html, Size: 4011 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-07-29 19:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-29  1:58 bug#42590: 27.0.91; Advice error for interactive commands Yuan Fu
2020-07-29 17:41 ` Michael Heerdegen
2020-07-29 19:21   ` Yuan Fu
2020-07-29 19:22 ` bug#42590: Fwd: " Yuan Fu

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).