unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
@ 2014-02-25 19:06 Sam Steingold
  2014-02-25 21:08 ` Juanma Barranquero
  0 siblings, 1 reply; 21+ messages in thread
From: Sam Steingold @ 2014-02-25 19:06 UTC (permalink / raw)
  To: 16884

In GNU Emacs 24.3.50.6 (x86_64-apple-darwin13.1.0, NS apple-appkit-1265.19)
 of 2014-02-25 on sds-MacBook-Pro.local
Windowing system distributor `Apple', version 10.3.1265
Configured using:
 `configure --with-ns'

when restarting emacs I just got this:

Debugger entered--Lisp error: (file-error "Reading directory" "no such file or directory" "/Users/sds/.emacs.d/auto-saves/*")
  access-file("/Users/sds/.emacs.d/auto-saves/*" "Reading directory")
  insert-directory("/Users/sds/.emacs.d/auto-saves/*" "-als" t nil)
  dired-insert-directory("/Users/sds/.emacs.d/auto-saves/*" "-als" nil t t)
  dired-readin-insert()
  dired-readin()
  dired-internal-noselect("/Users/sds/.emacs.d/auto-saves/*" nil)
  dired-noselect("/Users/sds/.emacs.d/auto-saves/*" nil)
  dired("/Users/sds/.emacs.d/auto-saves/*")
  dired-restore-desktop-buffer(nil "*" ("/Users/sds/.emacs.d/auto-saves/*"))
  #[0 "\v\f\236A\206\b\305\300\301\302#\207" [nil "*" ("/Users/sds/.emacs.d/auto-saves/*") desktop-buffer-major-mode desktop-buffer-mode-handlers desktop-restore-file-buffer] 4 "\n\n(fn)"]()
  funcall(#[0 "\v\f\236A\206\b\305\300\301\302#\207" [nil "*" ("/Users/sds/.emacs.d/auto-saves/*") desktop-buffer-major-mode desktop-buffer-mode-handlers desktop-restore-file-buffer] 4 "\n\n(fn)"])
  desktop-create-buffer(206 nil "*" dired-mode (rcirc-track-minor-mode) 288 (nil nil) t ("/Users/sds/.emacs.d/auto-saves/*") nil)
  eval-buffer(#<buffer  *load*> nil "/Users/sds/.emacs.d/.emacs.desktop" nil t)  ; Reading at buffer position 8688
  load-with-code-conversion("/Users/sds/.emacs.d/.emacs.desktop" "/Users/sds/.emacs.d/.emacs.desktop" t t)
  load("/Users/sds/.emacs.d/.emacs.desktop" t t t)
  desktop-read()
  #[0 "\303\211\b\235\203

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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-25 19:06 bug#16884: 24.3.50; desktop-read should not die on non-existing directories Sam Steingold
@ 2014-02-25 21:08 ` Juanma Barranquero
  2014-02-26 17:28   ` Glenn Morris
  0 siblings, 1 reply; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-25 21:08 UTC (permalink / raw)
  To: Sam Steingold; +Cc: 16884

On Tue, Feb 25, 2014 at 8:06 PM, Sam Steingold <sds@gnu.org> wrote:

> when restarting emacs I just got this:
>
> Debugger entered--Lisp error: (file-error "Reading directory" "no such file or directory" "/Users/sds/.emacs.d/auto-saves/*")
>   access-file("/Users/sds/.emacs.d/auto-saves/*" "Reading directory")

> because I did M-x recover-session RET in the previous incarnation.
> I think this error should be caught and either ignored or reported as a message.

On Windows I don't see that. If the directory does not exist (either
the auto-saves one or any other directory in a Dired buffer), desktop
just outputs its usual summary line saying that N buffers were
restored, M buffers failed to restore.

Can you reproduce it at will?

    J





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-25 21:08 ` Juanma Barranquero
@ 2014-02-26 17:28   ` Glenn Morris
  2014-02-26 17:35     ` Glenn Morris
  2014-02-26 17:40     ` Juanma Barranquero
  0 siblings, 2 replies; 21+ messages in thread
From: Glenn Morris @ 2014-02-26 17:28 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Sam Steingold, 16884


Note the unusual use of "*" in the backtrace.
The problem is not "non-existing directory" as it says in the subject,
but failure to match a glob pattern.

mkdir /tmp/foo
touch /tmp/foo/1
emacs -Q
M-x dired /tmp/foo/*    ; why not just /tmp/foo ... ?
M-x desktop-save RET /tmp RET
M-x kill-emacs

rm /tmp/foo/1   ; not rm -rf /tmp/foo

emacs -Q
M-: (desktop-read "/tmp")

 -> Debugger entered--Lisp error: (file-error "Reading directory"
    "no such file or directory" "/tmp/foo/*")





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 17:28   ` Glenn Morris
@ 2014-02-26 17:35     ` Glenn Morris
  2014-02-26 17:47       ` Juanma Barranquero
  2014-02-26 17:40     ` Juanma Barranquero
  1 sibling, 1 reply; 21+ messages in thread
From: Glenn Morris @ 2014-02-26 17:35 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Sam Steingold, 16884


PS maybe just stick a with-demoted-errors in dired-restore-desktop-buffer.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 17:28   ` Glenn Morris
  2014-02-26 17:35     ` Glenn Morris
@ 2014-02-26 17:40     ` Juanma Barranquero
  1 sibling, 0 replies; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 17:40 UTC (permalink / raw)
  To: Glenn Morris; +Cc: Sam Steingold, 16884

On Wed, Feb 26, 2014 at 6:28 PM, Glenn Morris <rgm@gnu.org> wrote:

> mkdir /tmp/foo
> touch /tmp/foo/1
> emacs -Q
> M-x dired /tmp/foo/*    ; why not just /tmp/foo ... ?
> M-x desktop-save RET /tmp RET
> M-x kill-emacs
>
> rm /tmp/foo/1   ; not rm -rf /tmp/foo
>
> emacs -Q
> M-: (desktop-read "/tmp")
>
>  -> Debugger entered--Lisp error: (file-error "Reading directory"
>     "no such file or directory" "/tmp/foo/*")

Doesn't happen on Windows. I get a buffer named "*", with contents:

  c:/Windows/Temp/foo:
  wildcard *
  total used in directory 12 available 57142624
  drwxrwxrwx  1 Administradores None                0 feb 26 18:36 .
  drwxrwxrwx  1 Administradores Administradores 12288 feb 26 18:35 ..





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 17:35     ` Glenn Morris
@ 2014-02-26 17:47       ` Juanma Barranquero
  2014-02-26 18:15         ` Sam Steingold
  2014-02-26 18:20         ` Eli Zaretskii
  0 siblings, 2 replies; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 17:47 UTC (permalink / raw)
  To: Glenn Morris; +Cc: Sam Steingold, 16884

On Wed, Feb 26, 2014 at 6:35 PM, Glenn Morris <rgm@gnu.org> wrote:

> PS maybe just stick a with-demoted-errors in dired-restore-desktop-buffer.

I don't think it is in fact related to desktop. If I call

  (dired-restore-desktop-buffer nil "*" '("C:/Windows/temp/foo/*"))

it doesn't fail. The problem seems to be that (dired
"/some/path/with/empty/dir/*") is failing for you (y'all, I mean ;-),
while it works on Windows. Can you try this without desktop.el?





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 17:47       ` Juanma Barranquero
@ 2014-02-26 18:15         ` Sam Steingold
  2014-02-26 18:18           ` Juanma Barranquero
  2014-02-26 18:20         ` Eli Zaretskii
  1 sibling, 1 reply; 21+ messages in thread
From: Sam Steingold @ 2014-02-26 18:15 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: 16884

I set debug-on-error to t in .emacs, this might be causing the problem.
however, I think this kind of error reporting should be controlled by
--debug-init and not debug-on-error

On Wed, Feb 26, 2014 at 12:47 PM, Juanma Barranquero <lekktu@gmail.com> wrote:
> On Wed, Feb 26, 2014 at 6:35 PM, Glenn Morris <rgm@gnu.org> wrote:
>
>> PS maybe just stick a with-demoted-errors in dired-restore-desktop-buffer.
>
> I don't think it is in fact related to desktop. If I call
>
>   (dired-restore-desktop-buffer nil "*" '("C:/Windows/temp/foo/*"))
>
> it doesn't fail. The problem seems to be that (dired
> "/some/path/with/empty/dir/*") is failing for you (y'all, I mean ;-),
> while it works on Windows. Can you try this without desktop.el?



-- 
Sam Steingold <http://sds.podval.org> <http://www.childpsy.net/>





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:15         ` Sam Steingold
@ 2014-02-26 18:18           ` Juanma Barranquero
  2014-02-26 18:36             ` Glenn Morris
  2014-02-26 18:38             ` Sam Steingold
  0 siblings, 2 replies; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 18:18 UTC (permalink / raw)
  To: Sam Steingold; +Cc: 16884

On Wed, Feb 26, 2014 at 7:15 PM, Sam Steingold <sds@gnu.org> wrote:

> I set debug-on-error to t in .emacs, this might be causing the problem.

Not unless there's an error in the first place.

If you run

  M-: (dired "/Users/sds/.emacs.d/auto-saves/*") <RET>

(assuming that the auto-saves directory is empty), do you get an error?





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 17:47       ` Juanma Barranquero
  2014-02-26 18:15         ` Sam Steingold
@ 2014-02-26 18:20         ` Eli Zaretskii
  2014-02-26 18:28           ` Juanma Barranquero
  1 sibling, 1 reply; 21+ messages in thread
From: Eli Zaretskii @ 2014-02-26 18:20 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: sds, 16884

> From: Juanma Barranquero <lekktu@gmail.com>
> Date: Wed, 26 Feb 2014 18:47:18 +0100
> Cc: Sam Steingold <sds@gnu.org>, 16884@debbugs.gnu.org
> 
> On Wed, Feb 26, 2014 at 6:35 PM, Glenn Morris <rgm@gnu.org> wrote:
> 
> > PS maybe just stick a with-demoted-errors in dired-restore-desktop-buffer.
> 
> I don't think it is in fact related to desktop. If I call
> 
>   (dired-restore-desktop-buffer nil "*" '("C:/Windows/temp/foo/*"))
> 
> it doesn't fail. The problem seems to be that (dired
> "/some/path/with/empty/dir/*") is failing for you (y'all, I mean ;-),
> while it works on Windows. Can you try this without desktop.el?

Dired on Windows uses ls-lisp.el, not a real ls program.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:20         ` Eli Zaretskii
@ 2014-02-26 18:28           ` Juanma Barranquero
  2014-02-26 18:34             ` Eli Zaretskii
  0 siblings, 1 reply; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 18:28 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Sam Steingold, 16884

On Wed, Feb 26, 2014 at 7:20 PM, Eli Zaretskii <eliz@gnu.org> wrote:

> Dired on Windows uses ls-lisp.el, not a real ls program.

Yep, you're right. But dired is documented to accept wildcards:

  Dired displays a list of files in dirname (which may also have
  shell wildcards appended to select certain files).

so, in any platform, I wouldn't expect it to throw an error if the
wildcard matches no file.

However, if I set

 (setq insert-directory-program "c:/bin/gnu/bin/ls.exe"
       ls-lisp-use-insert-directory-program t)

then (dired "C:/windows/temp/foo/*") does indeed throw an error.

Is that the expected behavior? It seems like a bug to me (just not in
desktop.el, but dired.el).





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:28           ` Juanma Barranquero
@ 2014-02-26 18:34             ` Eli Zaretskii
  2014-02-26 18:36               ` Juanma Barranquero
  0 siblings, 1 reply; 21+ messages in thread
From: Eli Zaretskii @ 2014-02-26 18:34 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: sds, 16884

> From: Juanma Barranquero <lekktu@gmail.com>
> Date: Wed, 26 Feb 2014 19:28:51 +0100
> Cc: Glenn Morris <rgm@gnu.org>, Sam Steingold <sds@gnu.org>, 16884@debbugs.gnu.org
> 
>   Dired displays a list of files in dirname (which may also have
>   shell wildcards appended to select certain files).
> 
> so, in any platform, I wouldn't expect it to throw an error if the
> wildcard matches no file.

Why do you expect an error to be thrown?





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:34             ` Eli Zaretskii
@ 2014-02-26 18:36               ` Juanma Barranquero
  2014-02-26 19:04                 ` Eli Zaretskii
  0 siblings, 1 reply; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 18:36 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Sam Steingold, 16884

On Wed, Feb 26, 2014 at 7:34 PM, Eli Zaretskii <eliz@gnu.org> wrote:

> Why do you expect an error to be thrown?

I don't expect it. I get it, when using the ls executable, and that's
also what Sam and Glenn are reporting.

Am I missing something?





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:18           ` Juanma Barranquero
@ 2014-02-26 18:36             ` Glenn Morris
  2014-02-26 18:49               ` Juanma Barranquero
  2014-02-26 18:38             ` Sam Steingold
  1 sibling, 1 reply; 21+ messages in thread
From: Glenn Morris @ 2014-02-26 18:36 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Sam Steingold, 16884

Juanma Barranquero wrote:

> If you run
>
>   M-: (dired "/Users/sds/.emacs.d/auto-saves/*") <RET>
>
> (assuming that the auto-saves directory is empty), do you get an error?

Yes. In just the same way as

M-: (dired "/blargh") RET

throws an error.

This is all fine in normal use.

But dired-restore-desktop-buffer should trap the "glob match fails" case
in just the same way as it traps the "no such directory" case.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:18           ` Juanma Barranquero
  2014-02-26 18:36             ` Glenn Morris
@ 2014-02-26 18:38             ` Sam Steingold
  1 sibling, 0 replies; 21+ messages in thread
From: Sam Steingold @ 2014-02-26 18:38 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: 16884

> * Juanma Barranquero <yrxxgh@tznvy.pbz> [2014-02-26 19:18:33 +0100]:
>
> On Wed, Feb 26, 2014 at 7:15 PM, Sam Steingold <sds@gnu.org> wrote:
>
>> I set debug-on-error to t in .emacs, this might be causing the problem.
>
> Not unless there's an error in the first place.
>
> If you run
>
>   M-: (dired "/Users/sds/.emacs.d/auto-saves/*") <RET>
>
> (assuming that the auto-saves directory is empty), do you get an error?

auto-saves is not empty ATM, but auto-save-list is:

(dired "/Users/sds/.emacs.d/auto-save-list/*")

Debugger entered--Lisp error: (file-error "Reading directory" "no such file or directory" "/Users/sds/.emacs.d/auto-save-list/*")
  access-file("/Users/sds/.emacs.d/auto-save-list/*" "Reading directory")
  insert-directory("/Users/sds/.emacs.d/auto-save-list/*" "-als" t nil)
  dired-insert-directory("/Users/sds/.emacs.d/auto-save-list/*" "-als" nil t t)
  dired-readin-insert()
  dired-readin()
  dired-internal-noselect("/Users/sds/.emacs.d/auto-save-list/*" nil)
  dired-noselect("/Users/sds/.emacs.d/auto-save-list/*" nil)
  dired("/Users/sds/.emacs.d/auto-save-list/*")
  eval((dired "/Users/sds/.emacs.d/auto-save-list/*") nil)
  eval-last-sexp-1(t)
  eval-last-sexp(t)
  eval-print-last-sexp(nil)
  call-interactively(eval-print-last-sexp nil nil)
  command-execute(eval-print-last-sexp)


-- 
Sam Steingold (http://sds.podval.org/) on darwin Ns 10.3.1265
http://www.childpsy.net/ http://pmw.org.il http://truepeace.org
http://memri.org http://camera.org http://islamexposedonline.com
Three can keep a secret if two of them are dead.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:36             ` Glenn Morris
@ 2014-02-26 18:49               ` Juanma Barranquero
  2014-02-26 19:22                 ` Glenn Morris
  0 siblings, 1 reply; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 18:49 UTC (permalink / raw)
  To: Glenn Morris; +Cc: Sam Steingold, 16884

On Wed, Feb 26, 2014 at 7:36 PM, Glenn Morris <rgm@gnu.org> wrote:

> Yes. In just the same way as
>
> M-: (dired "/blargh") RET
>
> throws an error.
>
> This is all fine in normal use.

Well, I find it curious that dired of an empty directory or a failing
pattern match should throw an error (as I said, it doesn't on Windows
when using ls-lisp.el), but if that's the usual and time-honored
behavior, who am I to discuss it?

> But dired-restore-desktop-buffer should trap the "glob match fails" case
> in just the same way as it traps the "no such directory" case.

Yes, if (dired "/nonexistent") errors out, we should catch it when
restoring desktop.el. And it shouldn't ever be a with-demoted-errors,
failing to restore buffers in desktop.el is quite silent, just a
message at the end "X frames, Y buffers restored, Z failed to
restore."





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:36               ` Juanma Barranquero
@ 2014-02-26 19:04                 ` Eli Zaretskii
  2014-02-26 19:09                   ` Glenn Morris
  0 siblings, 1 reply; 21+ messages in thread
From: Eli Zaretskii @ 2014-02-26 19:04 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: sds, 16884

> From: Juanma Barranquero <lekktu@gmail.com>
> Date: Wed, 26 Feb 2014 19:36:05 +0100
> Cc: Glenn Morris <rgm@gnu.org>, Sam Steingold <sds@gnu.org>, 16884@debbugs.gnu.org
> 
> On Wed, Feb 26, 2014 at 7:34 PM, Eli Zaretskii <eliz@gnu.org> wrote:
> 
> > Why do you expect an error to be thrown?
> 
> I don't expect it. I get it, when using the ls executable, and that's
> also what Sam and Glenn are reporting.

AFAIK, what happens when a wildcard matches nothing is implementation
defined.

What exactly depends on an error being thrown in this case?





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 19:04                 ` Eli Zaretskii
@ 2014-02-26 19:09                   ` Glenn Morris
  2014-02-26 19:13                     ` Eli Zaretskii
  0 siblings, 1 reply; 21+ messages in thread
From: Glenn Morris @ 2014-02-26 19:09 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Juanma Barranquero, sds, 16884

Eli Zaretskii wrote:

> AFAIK, what happens when a wildcard matches nothing is implementation
> defined.

ls FILE-THAT-DOES-NOT-EXIST

returns non-zero.

ls knows nothing of wildcards, that's the shell's business.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 19:09                   ` Glenn Morris
@ 2014-02-26 19:13                     ` Eli Zaretskii
  2014-02-26 19:20                       ` Glenn Morris
  0 siblings, 1 reply; 21+ messages in thread
From: Eli Zaretskii @ 2014-02-26 19:13 UTC (permalink / raw)
  To: Glenn Morris; +Cc: lekktu, sds, 16884

> From: Glenn Morris <rgm@gnu.org>
> Cc: Juanma Barranquero <lekktu@gmail.com>,  sds@gnu.org,  16884@debbugs.gnu.org
> Date: Wed, 26 Feb 2014 14:09:34 -0500
> 
> ls knows nothing of wildcards, that's the shell's business.

Not on Windows, where the wildcards are expanded by the application's
startup code.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 19:13                     ` Eli Zaretskii
@ 2014-02-26 19:20                       ` Glenn Morris
  0 siblings, 0 replies; 21+ messages in thread
From: Glenn Morris @ 2014-02-26 19:20 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: lekktu, sds, 16884

Eli Zaretskii wrote:

>> ls knows nothing of wildcards, that's the shell's business.
>
> Not on Windows, where the wildcards are expanded by the application's
> startup code.

I'm shocked, shocked to learn that Windows is dumb.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 18:49               ` Juanma Barranquero
@ 2014-02-26 19:22                 ` Glenn Morris
  2014-02-26 20:31                   ` Juanma Barranquero
  0 siblings, 1 reply; 21+ messages in thread
From: Glenn Morris @ 2014-02-26 19:22 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Sam Steingold, 16884

Juanma Barranquero wrote:

>> But dired-restore-desktop-buffer should trap the "glob match fails" case
>> in just the same way as it traps the "no such directory" case.
>
> Yes, if (dired "/nonexistent") errors out, we should catch it when
> restoring desktop.el. And it shouldn't ever be a with-demoted-errors,
> failing to restore buffers in desktop.el is quite silent, just a
> message at the end "X frames, Y buffers restored, Z failed to
> restore."

If you've got time to implement this nicety, go for it.
I just went with with-demoted-errors, with is consistent with the
existing "no such directory" case.





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

* bug#16884: 24.3.50; desktop-read should not die on non-existing directories
  2014-02-26 19:22                 ` Glenn Morris
@ 2014-02-26 20:31                   ` Juanma Barranquero
  0 siblings, 0 replies; 21+ messages in thread
From: Juanma Barranquero @ 2014-02-26 20:31 UTC (permalink / raw)
  To: Glenn Morris; +Cc: Sam Steingold, 16884

On Wed, Feb 26, 2014 at 8:22 PM, Glenn Morris <rgm@gnu.org> wrote:

> I just went with with-demoted-errors, with is consistent with the
> existing "no such directory" case.

I'm OK with that. We can change it afterwards if anyone complains.

Thanks.





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

end of thread, other threads:[~2014-02-26 20:31 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-25 19:06 bug#16884: 24.3.50; desktop-read should not die on non-existing directories Sam Steingold
2014-02-25 21:08 ` Juanma Barranquero
2014-02-26 17:28   ` Glenn Morris
2014-02-26 17:35     ` Glenn Morris
2014-02-26 17:47       ` Juanma Barranquero
2014-02-26 18:15         ` Sam Steingold
2014-02-26 18:18           ` Juanma Barranquero
2014-02-26 18:36             ` Glenn Morris
2014-02-26 18:49               ` Juanma Barranquero
2014-02-26 19:22                 ` Glenn Morris
2014-02-26 20:31                   ` Juanma Barranquero
2014-02-26 18:38             ` Sam Steingold
2014-02-26 18:20         ` Eli Zaretskii
2014-02-26 18:28           ` Juanma Barranquero
2014-02-26 18:34             ` Eli Zaretskii
2014-02-26 18:36               ` Juanma Barranquero
2014-02-26 19:04                 ` Eli Zaretskii
2014-02-26 19:09                   ` Glenn Morris
2014-02-26 19:13                     ` Eli Zaretskii
2014-02-26 19:20                       ` Glenn Morris
2014-02-26 17:40     ` Juanma Barranquero

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).