* bug#14912: 24.3.50; replace.el: Replace error with user-error?
2013-07-19 16:28 bug#14912: 24.3.50; replace.el: Replace error with user-error? Jambunathan K
@ 2002-01-01 0:40 ` Jambunathan K
2013-07-19 16:37 ` Jambunathan K
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Jambunathan K @ 2002-01-01 0:40 UTC (permalink / raw)
To: 14912-done
People don't report minor errors? Why should I? As OP closing it.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#14912: 24.3.50; replace.el: Replace error with user-error?
@ 2013-07-19 16:28 Jambunathan K
2002-01-01 0:40 ` Jambunathan K
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jambunathan K @ 2013-07-19 16:28 UTC (permalink / raw)
To: 14912
Very frequently I enable debug-on-error.
This is invariably accompanied with M-x occur RET on some source file
with infinite typings of M-n and M-p s.
Under these conditions, these "spurious" errors get very annoying. I am
wondering these qualify as `user-error' s.
Debugger entered--Lisp error: (error "No more matches")
signal(error ("No more matches"))
error("No more matches")
(if r (goto-char r) (error message))
(while (> n 0) (setq r (funcall search (point) (quote occur-match))) (and r (get-text-property r (quote occur-match)) (setq r (funcall search r (quote occur-match)))) (if r (goto-char r) (error message)) (setq n (1- n)))
(let ((r)) (while (> n 0) (setq r (funcall search (point) (quote occur-match))) (and r (get-text-property r (quote occur-match)) (setq r (funcall search r (quote occur-match)))) (if r (goto-char r) (error message)) (setq n (1- n))))
occur-find-match(1 previous-single-property-change "No more matches")
occur-next-error(-1 nil)
next-error(-1)
previous-error(1)
call-interactively(previous-error nil nil)
command-execute(previous-error)
Debugger entered--Lisp error: (error "No more matches")
signal(error ("No more matches"))
error("No more matches")
(if r (goto-char r) (error message))
(while (> n 0) (setq r (funcall search (point) (quote occur-match))) (and r (get-text-property r (quote occur-match)) (setq r (funcall search r (quote occur-match)))) (if r (goto-char r) (error message)) (setq n (1- n)))
(let ((r)) (while (> n 0) (setq r (funcall search (point) (quote occur-match))) (and r (get-text-property r (quote occur-match)) (setq r (funcall search r (quote occur-match)))) (if r (goto-char r) (error message)) (setq n (1- n))))
occur-find-match(1 next-single-property-change "No more matches")
occur-next-error(1 nil)
next-error(nil)
call-interactively(next-error nil nil)
command-execute(next-error)
In GNU Emacs 24.3.50.17 (i686-pc-linux-gnu, GTK+ Version 2.20.1)
of 2013-07-19 on debian-6.05
Bzr revision: 113464 larsi@gnus.org-20130719145728-npy1c84plu1mfbns
Windowing system distributor `The X.Org Foundation', version 11.0.10707000
Important settings:
value of $LANG: en_IN
locale-coding-system: iso-latin-1-unix
default enable-multibyte-characters: t
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#14912: 24.3.50; replace.el: Replace error with user-error?
2013-07-19 16:28 bug#14912: 24.3.50; replace.el: Replace error with user-error? Jambunathan K
2002-01-01 0:40 ` Jambunathan K
@ 2013-07-19 16:37 ` Jambunathan K
2013-07-19 16:51 ` Drew Adams
2013-07-20 8:29 ` Stefan Monnier
3 siblings, 0 replies; 5+ messages in thread
From: Jambunathan K @ 2013-07-19 16:37 UTC (permalink / raw)
To: 14912
Jambunathan K <kjambunathan@gmail.com> writes:
> infinite typings of M-n and M-p s
^^^^^^^^^^^
M-g M-n and M-g M-p
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#14912: 24.3.50; replace.el: Replace error with user-error?
2013-07-19 16:28 bug#14912: 24.3.50; replace.el: Replace error with user-error? Jambunathan K
2002-01-01 0:40 ` Jambunathan K
2013-07-19 16:37 ` Jambunathan K
@ 2013-07-19 16:51 ` Drew Adams
2013-07-20 8:29 ` Stefan Monnier
3 siblings, 0 replies; 5+ messages in thread
From: Drew Adams @ 2013-07-19 16:51 UTC (permalink / raw)
To: Jambunathan K, 14912
> Under these conditions, these "spurious" errors get very annoying. I am
> wondering these qualify as `user-error' s.
>
> Debugger entered--Lisp error: (error "No more matches")
My vote says yes - user error rather than system error.
But in fact I wonder whether we should even raise an error here,
instead of just showing an informative message. It is neither a
system error nor a user error that there are no search hits,
a priori.
Yes, no match might in some circumstance indicate an error of
some kind. But for regular interactive use it does not. It is
a normal result to be expected from a normal search interaction.
Treating it as an error seems misguided, IMO.
Perhaps such behavior is a (misguided) throwback to a Unix command
such as `grep' which uses an error return value to indicate no
matches. That is not the context here.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#14912: 24.3.50; replace.el: Replace error with user-error?
2013-07-19 16:28 bug#14912: 24.3.50; replace.el: Replace error with user-error? Jambunathan K
` (2 preceding siblings ...)
2013-07-19 16:51 ` Drew Adams
@ 2013-07-20 8:29 ` Stefan Monnier
3 siblings, 0 replies; 5+ messages in thread
From: Stefan Monnier @ 2013-07-20 8:29 UTC (permalink / raw)
To: Jambunathan K; +Cc: 14912
> signal(error ("No more matches"))
> error("No more matches")
Should be a user-error,
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-07-20 8:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-19 16:28 bug#14912: 24.3.50; replace.el: Replace error with user-error? Jambunathan K
2002-01-01 0:40 ` Jambunathan K
2013-07-19 16:37 ` Jambunathan K
2013-07-19 16:51 ` Drew Adams
2013-07-20 8:29 ` Stefan Monnier
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).