unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* desktop.el ugliness
@ 2007-07-12 21:24 Richard Stallman
  2007-07-12 22:29 ` Davis Herring
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Stallman @ 2007-07-12 21:24 UTC (permalink / raw)
  To: emacs-devel

desktop-buffer-info refers to the free variable dirname, which comes
from desktop-save.  Would someone please clean that up?
Then please ack.

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

* Re: desktop.el ugliness
  2007-07-12 21:24 desktop.el ugliness Richard Stallman
@ 2007-07-12 22:29 ` Davis Herring
  0 siblings, 0 replies; 2+ messages in thread
From: Davis Herring @ 2007-07-12 22:29 UTC (permalink / raw)
  To: Richard Stallman; +Cc: emacs-devel

> desktop-buffer-info refers to the free variable dirname, which comes
> from desktop-save.  Would someone please clean that up?
> Then please ack.

Sorry; `desktop-buffer-info' was once a lambda in `desktop-save', and I
didn't think to separate it cleanly.  Here's a trivial patch which also
corrects the handling of relative names in `desktop-save'.

Davis

2007-07-12  Davis Herring  <herring@lanl.gov>

	* desktop.el (desktop-buffer-info, desktop-save): Use
	`desktop-dirname' instead of `dirname'.

*** desktop.el	12 Jul 2007 16:23:06 -0600	1.112
--- desktop.el	12 Jul 2007 16:25:35 -0600
***************
*** 652,658 ****
    (set-buffer buffer)
    (list
     ;; basic information
!    (desktop-file-name (buffer-file-name) dirname)
     (buffer-name)
     major-mode
     ;; minor modes
--- 652,658 ----
    (set-buffer buffer)
    (list
     ;; basic information
!    (desktop-file-name (buffer-file-name) desktop-dirname)
     (buffer-name)
     major-mode
     ;; minor modes
***************
*** 673,679 ****
     buffer-read-only
     ;; auxiliary information
     (when (functionp desktop-save-buffer)
!      (funcall desktop-save-buffer dirname))
     ;; local variables
     (let ((locals desktop-locals-to-save)
  	 (loclist (buffer-local-variables))
--- 673,679 ----
     buffer-read-only
     ;; auxiliary information
     (when (functionp desktop-save-buffer)
!      (funcall desktop-save-buffer desktop-dirname))
     ;; local variables
     (let ((locals desktop-locals-to-save)
  	 (loclist (buffer-local-variables))
***************
*** 896,902 ****
  		(insert "\n  " (desktop-value-to-string e)))
  	      (insert ")\n\n")))

! 	  (setq default-directory dirname)
  	  (let ((coding-system-for-write 'emacs-mule))
  	    (write-region (point-min) (point-max) (desktop-full-file-name) nil
'nomessage))
  	  ;; We remember when it was modified (which is presumably just now).
--- 896,902 ----
  		(insert "\n  " (desktop-value-to-string e)))
  	      (insert ")\n\n")))

! 	  (setq default-directory desktop-dirname)
  	  (let ((coding-system-for-write 'emacs-mule))
  	    (write-region (point-min) (point-max) (desktop-full-file-name) nil
'nomessage))
  	  ;; We remember when it was modified (which is presumably just now).

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

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

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-12 21:24 desktop.el ugliness Richard Stallman
2007-07-12 22:29 ` Davis Herring

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