From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 07:31:42 2016 Received: (at submit) by debbugs.gnu.org; 24 Aug 2016 11:31:42 +0000 Received: from localhost ([127.0.0.1]:38715 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcWPA-0002W9-L7 for submit@debbugs.gnu.org; Wed, 24 Aug 2016 07:31:42 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36331) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcWP5-0002NE-Pf for submit@debbugs.gnu.org; Wed, 24 Aug 2016 07:31:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcWOu-0006l2-P6 for submit@debbugs.gnu.org; Wed, 24 Aug 2016 07:31:26 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:49694) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcWOu-0006kM-M9 for submit@debbugs.gnu.org; Wed, 24 Aug 2016 07:31:20 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55522) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcWOp-0007XB-On for bug-gnu-emacs@gnu.org; Wed, 24 Aug 2016 07:31:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcWOk-0006jE-LK for bug-gnu-emacs@gnu.org; Wed, 24 Aug 2016 07:31:14 -0400 Received: from mail01.smtp25.com ([67.228.8.1]:45697) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcWOk-0006hZ-85 for bug-gnu-emacs@gnu.org; Wed, 24 Aug 2016 07:31:10 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7OBV4kh008471 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Wed, 24 Aug 2016 07:31:04 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7OBV3L5008470; Wed, 24 Aug 2016 07:31:03 -0400 From: John Covici To: bug-gnu-emacs@gnu.org Subject: 25.1; problem with restoring desktop Date: Wed, 24 Aug 2016 07:31:03 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: d-out-001.smtp25.com-u7OBV4rh008515 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.1 (----) I am having a problem restoring my desktop, when there are several buffers. Instead of restoring the correct buffer as the current one, a random buffer is restored. Here is my .emacs file if that would help. ;; Added by Package.el. This must come before configurations of ;; installed packages. Don't delete this line. If you don't want it, ;; just comment it out by adding a semicolon to the start of the line. ;; You may delete these explanatory comments. (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") (when (< emacs-major-version 24) ;; For important compatibility libraries like cl-lib (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))) (package-initialize) (setq gnus-inhibit-startup-message t ) (setq default-major-mode 'text-mode) (load "bookmark") (load "saveplace") (setq history-length t) (add-hook'c-mode-common-hook (function(lambda() (c-toggle-auto-state 1)))) ; (autoload 'csharp-mode "csharp-mode" "Major mode for editing C# code." t) ; (setq auto-mode-alist ; (append '(("\\.cs$" . csharp-mode)) auto-mode-alist)) ; (setq auto-mode-alist ; (append '(("\\.cs$" . csharp-mode)) auto-mode-alist)) (add-hook 'text-mode-hook 'turn-on-auto-fill) (global-set-key [f1] 'help-command) (global-set-key "\C-s" 'nonincremental-re-search-forward) (global-set-key "\C-r" 'nonincremental-re-search-backward) (global-set-key [f6] 'nonincremental-repeat-search-forward) (global-set-key [f7] 'nonincremental-repeat-search-backward) (global-set-key [f8] 'replace-regexp) (global-set-key [f9] 'repeat-matching-complex-command) (global-set-key [home] 'beginning-of-line) (global-set-key [end] 'end-of-line) (column-number-mode 1) ;(autoload 'perl-mode "cperl-mode" "alternate mode for editing Perl programs" t) (add-hook'cperl-mode-hook (function(lambda() (setq cperl-hairy t) (setq cperl-extra-newline-before-brace 1) (setq cperl-auto-newline 1) (setq cperl-auto-newline-after-colon 1) (setq cperl-indent-level 4) (setq cperl-electric-parens-string nil) (setq cperl-continued-statement-offset 0) ))) ;; Add signature at the end of the email. (add-hook 'mh-letter-mode-hook '(lambda () (save-excursion (goto-char (point-max)) (mh-insert-signature)))) (setq-default next-line-add-newlines nil) (setq font-running-xemacs nil) ; (defun turn-off-backup () ; (set (make-local-variable 'version-control) 2)) ;(add-hook 'nnfolder-save-buffer-hook (lambda () (turn-off-backup))) (setq next-screen-context-lines 0) (setq inhibit-startup-message t) (menu-bar-mode -1); turn off those ------- menus (setq browse-url-lynx-input-attempts 1) (setq browse-url-lynx-emacs-args "-showcursor") (defun browse-url-lynx-emacs (url &optional new-buffer) "Ask the Lynx WWW browser to load URL. Default to the URL around or before point. With a prefix argument, run a new Lynx process in a new buffer. When called interactively, if variable `browse-url-new-window-flag' is non-nil, load the document in a new lynx in a new term window, otherwise use any existing one. A non-nil interactive prefix argument reverses the effect of `browse-url-new-window-flag'. When called non-interactively, optional second argument NEW-WINDOW is used instead of `browse-url-new-window-flag'." (interactive (browse-url-interactive-arg "Lynx URL: ")) (let* ((system-uses-terminfo t) ; Lynx uses terminfo ;; (term-term-name "vt100") ; ?? (buf (get-buffer "*lynx*")) (proc (and buf (get-buffer-process buf))) (n browse-url-lynx-input-attempts)) (if (and (browse-url-maybe-new-window new-buffer) buf) ;; Rename away the OLD buffer. This isn't very polite, but ;; term insists on working in a buffer named *lynx* and would ;; choke on *lynx*<1> (progn (set-buffer buf) (rename-uniquely))) (if (or (browse-url-maybe-new-window new-buffer) (not buf) (not proc) (not (memq (process-status proc) '(run stop)))) ;; start a new lynx (progn (setq buf (apply #'make-term `("lynx" "lynx" nil ,@browse-url-lynx-emacs-args ,url))) (switch-to-buffer buf) (term-char-mode) (set-process-sentinel (get-buffer-process buf) ;; Don't leave around a dead one (especially because of its ;; munged keymap.) (lambda (process event) (if (not (memq (process-status process) '(run stop))) (let ((buf (process-buffer process))) (if buf (kill-buffer buf))))))) ;; send the url to lynx in the old buffer (let ((win (get-buffer-window buf t))) (if win (select-window win) (switch-to-buffer buf))) (if (eq (following-char) ?_) (cond ((eq browse-url-lynx-input-field 'warn) (error "Please move out of the input field first")) ((eq browse-url-lynx-input-field 'avoid) (while (and (eq (following-char) ?_) (> n 0)) (term-send-down) ; down arrow (sit-for browse-url-lynx-input-delay)) (if (eq (following-char) ?_) (error "Cannot move out of the input field, sorry"))))) (term-send-string proc (concat "g" ; goto "\C-u" ; kill default url url "\r"))))) (defun forward-word-to-nonblank () "forwards past the blank space where forward-word normally lands" (interactive) (forward-word 2) (forward-word -1) ) (global-set-key [\C-right] 'forward-word-to-nonblank) (global-set-key [\M-right] 'forward-word-to-nonblank) (global-set-key "\M-f" 'forward-word-to-nonblank) (defun eir-fix-articles () "function to replaceeir articles with correct versions and do cleanup" (setq ignore-auto 1) (setq noconfirm 1) (setq preserve-modes 1) (shell-command "ls *.TXT >temp.sc") (shell-command "chmod u+x temp.sc") (find-file "temp.sc") (goto-char (point-min)) (while (re-search-forward "^.*$" nil t) (replace-match "\\& \\&" nil nil)) (goto-char (point-min)) (while (re-search-forward " EIR...\$*" nil t) (replace-match " " nil nil)) (goto-char (point-min)) (while (re-search-forward "\\$" nil t) (replace-match "\\\\$" nil nil)) (goto-char (point-min)) (while (re-search-forward "^" nil t) (replace-match "mv " nil nil)) (beginning-of-line) (kill-line) (save-buffer) (shell-command "./temp.sc") (when (file-exists-p "CON.TXT") (rename-file "CON.TXT" "CONX.TXT")) (shell-command "ls *.TXT >temp.sc") (revert-buffer ignore-auto noconfirm preserve-modes) (goto-char (point-min)) (while (re-search-forward "^" nil t) (replace-match "miles2 " nil nil)) (beginning-of-line) (kill-line) (save-buffer) (shell-command "./temp.sc") (shell-command "ls -1 -F -a .. >temp.sc") (revert-buffer ignore-auto noconfirm preserve-modes) (goto-char (point-min)) (re-search-forward "txt/" nil t) (beginning-of-line) (kill-line) (kill-line) (goto-char (point-min)) (kill-line) (kill-line) (kill-line) (kill-line) (while (re-search-forward "\*" nil t) (replace-match "" nil nil)) (goto-char (point-min)) (while (re-search-forward "^.*$" nil t) (replace-match "\\& \\&" nil nil)) (goto-char (point-min)) (while (re-search-forward "\\..* " nil t) (replace-match ".art ../" nil nil)) (goto-char (point-min)) (while (re-search-forward "^" nil t) (replace-match "mv " nil nil)) (beginning-of-line) (kill-line) (save-buffer) ) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(browse-url-browser-function (quote browse-url-lynx-emacs)) '(browse-url-lynx-emacs-args nil t) '(browse-url-lynx-input-field nil) '(canlock-password "5de3542f3d08b117db60777f7b3f934ff0248a72") '(delete-old-versions t) '(desktop-missing-file-warning nil) '(desktop-path (quote ("."))) '(desktop-save t) '(desktop-save-mode t nil (desktop)) '(dired-kept-versions 1) '(dired-recursive-copies (quote always)) '(dired-recursive-deletes (quote always)) '(doc-view-conversion-refresh-interval 0) '(doc-view-odf->pdf-converter-program "odt2txt") '(doc-view-pdftotext-program "pdftotext") '(doc-view-unoconv-program "odt2txt") '(elmo-imap4-default-port 993) '(elmo-imap4-default-server "ccs.covici.com") '(elmo-imap4-default-stream-type (quote ssl)) '(elmo-message-fetch-confirm t) '(elmo-message-fetch-threshold 900000) '(epa-pinentry-mode (quote loopback)) '(erc-log-channels-directory "~/irclog") '(erc-log-mode t) '(erc-log-write-after-insert t) '(erc-log-write-after-send t) '(erc-nick "covici") '(kept-new-versions 5) '(kept-old-versions 0) '(large-file-warning-threshold 93000000) '(line-number-display-limit 100000000) '(mail-archive-file-name "copy_of_outgoing.txt") '(mail-default-headers nil) '(mail-default-reply-to "covici@ccs.covici.com") '(mail-host-address nil) '(mail-send-nonascii nil) '(mail-signature t) '(mail-use-rfc822 t) '(mail-user-agent (quote message-user-agent)) '(mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^in-reply-to:\\|^return-path:") '(mail-yank-prefix ">") '(mh-compose-space-does-completion-flag t) '(mh-delete-yanked-msg-window-flag t) '(mh-display-buttons-for-alternatives-flag t) '(mh-forward-subject-format "%s: %s (fwd)") '(mh-identity-default nil) '(mh-identity-list (quote (("covici" ((":pgg-default-user-id" . "covici")))))) '(mh-inc-spool-list nil) '(mh-invisible-header-fields (quote ("Organization" "Sender" "User-agent" "X-"))) '(mh-reply-default-reply-to "all") '(mh-yank-behavior (quote autoattrib)) '(mime-display-text/plain-flowed-fill-column 65) '(mime-edit-split-message nil) '(mime-edit-translate-hook (quote (mime-edit-insert-signature))) '(mime-pgp-decrypt-when-preview t) '(mime-view-text/html-previewer (quote shr)) '(next-line-add-newlines nil) '(package-selected-packages (quote (wanderlust))) '(pgg-query-keyserver t) '(save-place-limit nil) '(save-place-mode t) '(save-place-version-control (quote nospecial)) '(scroll-down-aggressively nil) '(scroll-up-aggressively nil) '(send-mail-function nil) '(split-width-threshold nil) '(tab-width 5) '(track-eol t) '(undo-ask-before-discard nil) '(undo-limit 30000) '(undo-outer-limit 4000000) '(undo-strong-limit 40000) '(url-automatic-caching t) '(url-keep-history t) '(url-news-server "news.patriot.net") '(url-personal-mail-address "covici@ccs.covici.com") '(url-privacy-level (quote none)) '(user-full-name "John Covici") '(version-control t) '(w3-maximum-line-length 80) '(wl-alias-file "~/Mail/aliases") '(wl-auto-save-drafts-interval 30) '(wl-demo nil) '(wl-demo-display-logo nil) '(wl-draft-always-delete-myself t) '(wl-draft-folder "+drafts") '(wl-draft-preview-process-pgp t) '(wl-draft-send-mail-function (quote wl-draft-send-mail-with-sendmail)) '(wl-fcc "+Sent Items") '(wl-folder-move-cur-folder t) '(wl-interactive-send nil) '(wl-message-ignored-field-list (quote ("^.*$"))) '(wl-message-visible-field-list (quote ("^To:" "^Subject:" "^Date:" "^Reply" "^From:" "^Cc:"))) '(wl-nntp-posting-port nil) '(wl-nntp-posting-server "news-central.giganews.com") '(wl-nntp-posting-user "gn71330") '(wl-organization "Covici Computer Systems") '(wl-smtp-authenticate-type "login") '(wl-smtp-connection-type (quote starttls)) '(wl-smtp-posting-port 587) '(wl-smtp-posting-server "ccs.covici.com") '(wl-smtp-posting-user "covici") '(wl-summary-width nil) '(wl-temporary-file-directory "/audio/tmp/") '(wl-trash-folder "+Deleted Items")) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) (add-hook 'w3-mode-hook (lambda () (setq truncate-lines nil))) ;;; Emacs-w3 configuration options (autoload 'w3-preview-this-buffer "w3" "WWW Previewer" t) (autoload 'w3-follow-url-at-point "w3" "Find document at pt" t) (autoload 'w3 "w3" "WWW Browser" t) (autoload 'w3-open-local "w3" "Open local file for WWW browsing" t) (autoload 'w3-fetch "w3" "Open remote file for WWW browsing" t) (autoload 'w3-use-hotlist "w3" "Use shortcuts to view WWW docs" t) (autoload 'w3-show-hotlist "w3" "Use shortcuts to view WWW docs" t) (autoload 'w3-follow-link "w3" "Follow a hypertext link." t) (autoload 'w3-batch-fetch "w3" "Batch retrieval of URLs" t) (autoload 'url-get-url-at-point "url" "Find the url under the cursor" nil) (autoload 'url-file-attributes "url" "File attributes of a URL" nil) (autoload 'url-popup-info "url" "Get info on a URL" t) (autoload 'url-retrieve "url" "Retrieve a URL" nil) (autoload 'url-buffer-visiting "url" "Find buffer visiting a URL." nil) (autoload 'gopher-dispatch-object "gopher" "Fetch gopher dir" t) ;;; End of Emacs-w3 configuration options ;;; Emacs-w3 configuration options (autoload 'w3-preview-this-buffer "w3" "WWW Previewer" t) (autoload 'w3-follow-url-at-point "w3" "Find document at pt" t) (autoload 'w3 "w3" "WWW Browser" t) (autoload 'w3-open-local "w3" "Open local file for WWW browsing" t) (autoload 'w3-fetch "w3" "Open remote file for WWW browsing" t) (autoload 'w3-use-hotlist "w3" "Use shortcuts to view WWW docs" t) (autoload 'w3-show-hotlist "w3" "Use shortcuts to view WWW docs" t) (autoload 'w3-follow-link "w3" "Follow a hypertext link." t) (autoload 'w3-batch-fetch "w3" "Batch retrieval of URLs" t) (autoload 'url-get-url-at-point "url" "Find the url under the cursor" nil) (autoload 'url-file-attributes "url" "File attributes of a URL" nil) (autoload 'url-popup-info "url" "Get info on a URL" t) (autoload 'url-retrieve "url" "Retrieve a URL" nil) (autoload 'url-buffer-visiting "url" "Find buffer visiting a URL." nil) (autoload 'gopher-dispatch-object "gopher" "Fetch gopher dir" t) ;;; End of Emacs-w3 configuration options ;;; Emacs/W3 Configuration (setq load-path (cons "/usr/share/emacs/site-lisp" load-path)) (condition-case () (require 'w3-auto "w3-auto") (error nil)) (put 'upcase-region 'disabled nil) (autoload 'vm "vm" "Start VM on your primary inbox." t) (autoload 'vm-visit-folder "vm" "Start VM on an arbitrary folder." t) (autoload 'vm-visit-virtual-folder "vm" "Visit a VM virtual folder." t) (autoload 'vm-mode "vm" "Run VM major mode on a buffer" t) (autoload 'vm-mail "vm" "Send a mail message using VM." t) (autoload 'vm-submit-bug-report "vm" "Send a bug report about VM." t) ---- .emacs ends here ----- In GNU Emacs 25.1.1 (x86_64-pc-linux-gnu, GTK+ Version 3.20.8) of 2016-08-23 built on ccs.covici.com System Description: Gentoo Base System release 2.2 Configured using: 'configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/emacs-25.1_rc2 --htmldir=/usr/share/doc/emacs-25.1_rc2/html --libdir=/usr/lib64 --program-suffix=-emacs-25 --infodir=/usr/share/info/emacs-25 --localstatedir=/var --enable-locallisppath=/etc/emacs:/usr/share/emacs/site-lisp --with-gameuser=:gamestat --without-compress-install --with-file-notification=inotify --enable-acl --with-dbus --with-gpm --without-hesiod --without-kerberos --without-kerberos5 --with-xml2 --without-selinux --with-gnutls --without-wide-int --with-zlib --with-sound=alsa --with-x --without-ns --without-gconf --without-gsettings --without-toolkit-scroll-bars --with-gif --with-jpeg --with-png --with-rsvg --with-tiff --with-xpm --without-imagemagick --without-xft --without-cairo --without-libotf --without-m17n-flt --with-x-toolkit=gtk3 --without-xwidgets GENTOO_PACKAGE=app-editors/emacs-25.1_rc2 'CFLAGS=-O2 -mtune=core2 -pipe -ggdb' CPPFLAGS= 'LDFLAGS=-Wl,-O1 -Wl,--as-needed'' Configured features: XPM JPEG TIFF GIF PNG RSVG SOUND GPM DBUS NOTIFY ACL GNUTLS LIBXML2 ZLIB GTK3 X11 Important settings: value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: desktop-save-mode: t save-place-mode: t tooltip-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t Recent messages: Loading bookmark...done Loading saveplace...done Loading desktop...done Wrote /home/covici/.emacs.desktop.lock Desktop: 1 frame, 1 buffer restored. For information about GNU Emacs and the GNU system, type C-h C-a. Type C-x 1 to delete the help window. Load-path shadows: /home/covici/.emacs.d/elpa/flim-20160311.1537/hex-util hides /usr/share/emacs/25.1/lisp/hex-util /home/covici/.emacs.d/elpa/flim-20160311.1537/md4 hides /usr/share/emacs/25.1/lisp/md4 /home/covici/.emacs.d/elpa/flim-20160311.1537/ntlm hides /usr/share/emacs/25.1/lisp/net/ntlm /home/covici/.emacs.d/elpa/flim-20160311.1537/hmac-def hides /usr/share/emacs/25.1/lisp/net/hmac-def /home/covici/.emacs.d/elpa/flim-20160311.1537/sasl-digest hides /usr/share/emacs/25.1/lisp/net/sasl-digest /home/covici/.emacs.d/elpa/flim-20160311.1537/sasl-ntlm hides /usr/share/emacs/25.1/lisp/net/sasl-ntlm /home/covici/.emacs.d/elpa/flim-20160311.1537/sasl hides /usr/share/emacs/25.1/lisp/net/sasl /home/covici/.emacs.d/elpa/flim-20160311.1537/sasl-cram hides /usr/share/emacs/25.1/lisp/net/sasl-cram /home/covici/.emacs.d/elpa/flim-20160311.1537/hmac-md5 hides /usr/share/emacs/25.1/lisp/net/hmac-md5 /usr/share/emacs/site-lisp/mh-e/mh-compat hides /usr/share/emacs/25.1/lisp/mh-e/mh-compat /usr/share/emacs/site-lisp/mh-e/mh-e hides /usr/share/emacs/25.1/lisp/mh-e/mh-e /usr/share/emacs/site-lisp/mh-e/mh-xface hides /usr/share/emacs/25.1/lisp/mh-e/mh-xface /usr/share/emacs/site-lisp/mh-e/mh-seq hides /usr/share/emacs/25.1/lisp/mh-e/mh-seq /usr/share/emacs/site-lisp/mh-e/mh-utils hides /usr/share/emacs/25.1/lisp/mh-e/mh-utils /usr/share/emacs/site-lisp/mh-e/mh-search hides /usr/share/emacs/25.1/lisp/mh-e/mh-search /usr/share/emacs/site-lisp/mh-e/mh-scan hides /usr/share/emacs/25.1/lisp/mh-e/mh-scan /usr/share/emacs/site-lisp/mh-e/mh-funcs hides /usr/share/emacs/25.1/lisp/mh-e/mh-funcs /usr/share/emacs/site-lisp/mh-e/mh-show hides /usr/share/emacs/25.1/lisp/mh-e/mh-show /usr/share/emacs/site-lisp/mh-e/mh-limit hides /usr/share/emacs/25.1/lisp/mh-e/mh-limit /usr/share/emacs/site-lisp/mh-e/mh-tool-bar hides /usr/share/emacs/25.1/lisp/mh-e/mh-tool-bar /usr/share/emacs/site-lisp/mh-e/mh-speed hides /usr/share/emacs/25.1/lisp/mh-e/mh-speed /usr/share/emacs/site-lisp/mh-e/mh-print hides /usr/share/emacs/25.1/lisp/mh-e/mh-print /usr/share/emacs/site-lisp/mh-e/mh-junk hides /usr/share/emacs/25.1/lisp/mh-e/mh-junk /usr/share/emacs/site-lisp/mh-e/mh-mime hides /usr/share/emacs/25.1/lisp/mh-e/mh-mime /usr/share/emacs/site-lisp/mh-e/mh-thread hides /usr/share/emacs/25.1/lisp/mh-e/mh-thread /usr/share/emacs/site-lisp/mh-e/mh-acros hides /usr/share/emacs/25.1/lisp/mh-e/mh-acros /usr/share/emacs/site-lisp/mh-e/mh-letter hides /usr/share/emacs/25.1/lisp/mh-e/mh-letter /usr/share/emacs/site-lisp/mh-e/mh-alias hides /usr/share/emacs/25.1/lisp/mh-e/mh-alias /usr/share/emacs/site-lisp/mh-e/mh-inc hides /usr/share/emacs/25.1/lisp/mh-e/mh-inc /usr/share/emacs/site-lisp/mh-e/mh-identity hides /usr/share/emacs/25.1/lisp/mh-e/mh-identity /usr/share/emacs/site-lisp/mh-e/mh-folder hides /usr/share/emacs/25.1/lisp/mh-e/mh-folder /usr/share/emacs/site-lisp/mh-e/mh-buffers hides /usr/share/emacs/25.1/lisp/mh-e/mh-buffers /usr/share/emacs/site-lisp/mh-e/mh-gnus hides /usr/share/emacs/25.1/lisp/mh-e/mh-gnus /usr/share/emacs/site-lisp/mh-e/mh-loaddefs hides /usr/share/emacs/25.1/lisp/mh-e/mh-loaddefs /usr/share/emacs/site-lisp/mh-e/mh-comp hides /usr/share/emacs/25.1/lisp/mh-e/mh-comp Features: (shadow sort mail-extr warnings emacsbug message dired rfc822 mml mml-sec epg mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums thingatpt term/xterm xterm eww mm-url gnus gnus-ems nnheader mail-utils wid-edit url-queue url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util url-parse auth-source cl-seq eieio eieio-core cl-macs gnus-util time-date mm-util help-fns mail-prsvr password-cache url-vars mailcap shr dom subr-x browse-url format-spec desktop frameset cus-start cus-load saveplace bookmark pp finder-inf info package epg-config seq byte-opt gv bytecomp byte-compile cl-extra help-mode easymenu cconv site-gentoo edmacro kmacro cl-loaddefs pcase cl-lib imenu mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame 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 charscript case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer 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 dbusbind inotify dynamic-setting move-toolbar gtk x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 199073 6176) (symbols 48 29257 0) (miscs 40 51 138) (strings 32 47311 6660) (string-bytes 1 1248933) (vectors 16 19828) (vector-slots 8 513662 3906) (floats 8 271 242) (intervals 56 411 136) (buffers 976 23) (heap 1024 21938 1143)) -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 10:23:54 2016 Received: (at 24298) by debbugs.gnu.org; 24 Aug 2016 14:23:54 +0000 Received: from localhost ([127.0.0.1]:39190 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcZ5q-0006qY-8F for submit@debbugs.gnu.org; Wed, 24 Aug 2016 10:23:54 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43861) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcZ5k-0006qI-UP for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 10:23:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcZ5b-0005JN-UQ for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 10:23:39 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:45153) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcZ5b-0005IU-RI; Wed, 24 Aug 2016 10:23:35 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2432 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcZ5a-0006tQ-2I; Wed, 24 Aug 2016 10:23:34 -0400 Date: Wed, 24 Aug 2016 17:23:52 +0300 Message-Id: <831t1efdon.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Wed, 24 Aug 2016 07:31:03 -0400) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.2 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.2 (-----) > From: John Covici > Date: Wed, 24 Aug 2016 07:31:03 -0400 > > I am having a problem restoring my desktop, when there are several > buffers. Instead of restoring the correct buffer as the current one, a > random buffer is restored. I use desktop.el for a long time, and never had any such problems: I always get the buffer that was current when I shut down Emacs. > Here is my .emacs file if that would help. Hard to analyze such a large file. One difference from what I have is that my ~/.emacs has this single line (desktop-save-mode 1) near the very end of the file, whereas you activate desktop-save-mode via Customize, and it's not the last thing done in the init file. So maybe what comes after the activation of desktop-save-mode causes the problem? From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 10:53:35 2016 Received: (at 24298) by debbugs.gnu.org; 24 Aug 2016 14:53:35 +0000 Received: from localhost ([127.0.0.1]:39211 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcZYZ-0007hb-A8 for submit@debbugs.gnu.org; Wed, 24 Aug 2016 10:53:35 -0400 Received: from mail0205.smtp25.com ([174.37.170.205]:35838) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcZYT-0007hO-Ki for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 10:53:30 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7OErMIB027942 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 24 Aug 2016 10:53:22 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7OErL7h027941; Wed, 24 Aug 2016 10:53:21 -0400 Date: Wed, 24 Aug 2016 10:53:21 -0400 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <831t1efdon.fsf@gnu.org> References: <831t1efdon.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: s-out-001.smtp25.com-u7OErM6D006292 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Now one other bit of information. If I go back to the following commit it works correctly c97cd6c005e138856d99ecef86fa04674c34b779 whereas it is broke on latest git or the rc-2. Maybe I could do a git bisect, but its very time consuming. On Wed, 24 Aug 2016 10:23:52 -0400, Eli Zaretskii wrote: > > > From: John Covici > > Date: Wed, 24 Aug 2016 07:31:03 -0400 > > > > I am having a problem restoring my desktop, when there are several > > buffers. Instead of restoring the correct buffer as the current one, a > > random buffer is restored. > > I use desktop.el for a long time, and never had any such problems: I > always get the buffer that was current when I shut down Emacs. > > > Here is my .emacs file if that would help. > > Hard to analyze such a large file. One difference from what I have is > that my ~/.emacs has this single line > > (desktop-save-mode 1) > > near the very end of the file, whereas you activate desktop-save-mode > via Customize, and it's not the last thing done in the init file. So > maybe what comes after the activation of desktop-save-mode causes the > problem? -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 11:11:09 2016 Received: (at 24298) by debbugs.gnu.org; 24 Aug 2016 15:11:09 +0000 Received: from localhost ([127.0.0.1]:39226 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcZpZ-00087y-I4 for submit@debbugs.gnu.org; Wed, 24 Aug 2016 11:11:09 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53441) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcZpV-00087R-Jm for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 11:11:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcZpK-0000aV-Vp for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 11:10:56 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:45621) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcZpK-0000aL-SE; Wed, 24 Aug 2016 11:10:50 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2747 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcZpJ-0006ko-2m; Wed, 24 Aug 2016 11:10:49 -0400 Date: Wed, 24 Aug 2016 18:11:06 +0300 Message-Id: <83wpj6dwxh.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Wed, 24 Aug 2016 10:53:21 -0400) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <831t1efdon.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.2 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.2 (-----) > Date: Wed, 24 Aug 2016 10:53:21 -0400 > From: John Covici > Cc: 24298@debbugs.gnu.org > > Now one other bit of information. If I go back to the following > commit it works correctly > c97cd6c005e138856d99ecef86fa04674c34b779 > whereas it is broke on latest git or the rc-2. How do you mean "go back"? The commit you show was on master, whereas the version of Emacs reported with your bug report was 25.1, i.e. the RC, which was tarred from the emacs-25 branch. And when you say "latest git", which branch is that? FWIW, I see no such problems in RC2, either. Strange. From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 11:46:26 2016 Received: (at 24298) by debbugs.gnu.org; 24 Aug 2016 15:46:27 +0000 Received: from localhost ([127.0.0.1]:39267 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcaNm-0001q4-GS for submit@debbugs.gnu.org; Wed, 24 Aug 2016 11:46:26 -0400 Received: from mout.gmx.net ([212.227.17.20]:64378) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcaNj-0001jC-VB for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 11:46:24 -0400 Received: from [192.168.1.100] ([212.95.7.52]) by mail.gmx.com (mrgmx103) with ESMTPSA (Nemesis) id 0LcSWg-1atwVH0C62-00joEJ; Wed, 24 Aug 2016 17:46:13 +0200 Message-ID: <57BDC13A.5090200@gmx.at> Date: Wed, 24 Aug 2016 17:46:02 +0200 From: martin rudalics MIME-Version: 1.0 To: covici@ccs.covici.com, 24298@debbugs.gnu.org Subject: Re: bug#24298: 25.1; problem with restoring desktop References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K0:702UsdrS7ihT6QHu53PowCg2UBEnz1kZmVfOzhAphKeZGuauKAE O2tVUzFBUiNWiIaIvWBjrdBIEzrht0zDuAi//P5tq2D1jD37s8uBUZ3Q6vLv2DSllplhOO/ leadscbEt84W9mLzwwGsZZkZAuFBKTB4GSOYB2pCL1T9qPni/Jst7kwjqwWOXUZWxsBtl3W paAcawUvQtRf3put2J91Q== X-UI-Out-Filterresults: notjunk:1;V01:K0:Vs7ipTFB8bY=:Q9YOwS2yJl+pqGbtvHg5SV wWlgmbcUOLjMDKzjciSiVe9WkkfkJVVNC3zHEss7N2scPvRP+pZDLqDwQ7KidPR3o7/7nR387 OPGmNi1JtWws6e35BmjVSadQG1aK/ug9paW05n6oMBSd20zoGAdqXacwhHul8RQv4ILCY6RT7 SbR0hwneKfin3Ii6j/fbASCxM0K4DFQhau3zCFOtlBRSXbAq2qhBAge73zRqgDhddmjX7BF35 DH2ItRZ6TBjn6gdzgSahAIDglDf8dXp5LOtbl0Ip7cN6EVY5H9AIR0eMLVyJ6GGWuiz7luRw3 5T1MOMDKeA4Myc1a39JmYqnjAMXlIOa3RVSQzh69KJSfwNP1eV6i9CvF5mXApydNqB0S3kiZ+ kwYdopDKwARZxkze2FZ1ifjwVS7BSY0fXkZercG9irRwjbe82Wo3t9N0rJO3q85AOSGp+Vyzn sqzAZYZqdp8HTfj4LXlj5VNogHuJ+Yb/67rsIS98BrQdOn2miRvg0sugIdNUgZFq5vOXH9Qwl N+t6McCA77geBnPwE92tuuUNCU8oZA86W8TY7ZQ4YSBS8wnCbpWIaWz4bsh85rws7d6Hqy1wT wDoQJ+PqzaEeR/0iFgCP/f/MLffEMZJVpIcmDfY4SKMHUyuY7djJIpeEnTHxGP0YelcK6DA23 zM2NDPLHlwnczRC1k+lgRTltoS0GBBqLDZl993s1xX1pDFl0H16RH6wZiUOojWAgvYMz8JtQa Hpl0BovsR4awIY23PTNXAy8MBvD1IB/4jKnQasmn2wafCUInnXS4YfM3P+VIsJiIL5Ab8l+zq kAfJWSfLMDWk/wcEd2ECJdqheUQ7w== X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: 24298 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) > I am having a problem restoring my desktop, when there are several > buffers. Instead of restoring the correct buffer as the current one, = a > random buffer is restored. What happens when you set =E2=80=98desktop-restore-frames=E2=80=99 to nil= ? Apparently, restoring the buffer order with framesets seems to be a problem, see also bug#15382 and bug#23630. Sadly, not much has been done in this area since Juanma disappeared ... martin From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 12:02:08 2016 Received: (at 24298) by debbugs.gnu.org; 24 Aug 2016 16:02:08 +0000 Received: from localhost ([127.0.0.1]:39281 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcacy-0002YC-Gt for submit@debbugs.gnu.org; Wed, 24 Aug 2016 12:02:08 -0400 Received: from eggs.gnu.org ([208.118.235.92]:39266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcacw-0002Xq-TF for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 12:02:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcaco-0006WZ-Rl for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 12:02:01 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46305) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcaco-0006W5-PL; Wed, 24 Aug 2016 12:01:58 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2824 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcacm-0000dp-AB; Wed, 24 Aug 2016 12:01:57 -0400 Date: Wed, 24 Aug 2016 19:02:12 +0300 Message-Id: <83r39edukb.fsf@gnu.org> From: Eli Zaretskii To: martin rudalics In-reply-to: <57BDC13A.5090200@gmx.at> (message from martin rudalics on Wed, 24 Aug 2016 17:46:02 +0200) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > Date: Wed, 24 Aug 2016 17:46:02 +0200 > From: martin rudalics > > > I am having a problem restoring my desktop, when there are several > > buffers. Instead of restoring the correct buffer as the current one, a > > random buffer is restored. > > What happens when you set ‘desktop-restore-frames’ to nil? FWIW, the stuff works for me reliably without changing the defaulot value of that variable. > Apparently, restoring the buffer order with framesets seems to be a > problem, see also bug#15382 and bug#23630. Doesn't happen here, FWIW. From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 16:57:21 2016 Received: (at 24298) by debbugs.gnu.org; 24 Aug 2016 20:57:21 +0000 Received: from localhost ([127.0.0.1]:39413 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcfEf-00063N-DI for submit@debbugs.gnu.org; Wed, 24 Aug 2016 16:57:21 -0400 Received: from mail-it0-f45.google.com ([209.85.214.45]:37848) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcfEd-00063B-MJ for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 16:57:20 -0400 Received: by mail-it0-f45.google.com with SMTP id f6so56625393ith.0 for <24298@debbugs.gnu.org>; Wed, 24 Aug 2016 13:57:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=YNwDTizOWiZOYfyywI2JFrF0fjFLNF1pzT8FIivF2g0=; b=qZnoK5ZO+RCDldNTYc8ukQ/Ld4+3s6BarIxNeQLlOVsbv3cGe53qu49klYMRUFib7d iZx37Xnw6FoNRro6CTZRVTsGmPojaKNC9lELIhAPrwUFqonJMg6pfr7ey6S4OyXyAB6K cO9yUITvnXtleFH6g+3U/06/MyOUuDzzNP741qCgNSaVuRzwBUin8Trw9kCb+0WUFuzz 4aUbOEekhjW6XADNGEXEEy25Ew3h6fW33RCwEH9v1AP10Dutn8lk8uypIoQTXhDzFPzt 6Ho8CG06Y5LipaE4yGPC+aaal+BFVN5H2Iop14avLuRoCsvBAsbnqaRGlthNm4R/M+sg f3fw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=YNwDTizOWiZOYfyywI2JFrF0fjFLNF1pzT8FIivF2g0=; b=d80lZrUE8hoUA2a9TpJ7awTniF2oL2981VJQlxkf6N/PbxNhoqe7M0qGBBHAvn4Kfd prkVW4PDjh2hH4/6kXZdLmrMuhIZCFHM7tFvvHgpPvJ9at9dna7glc+KpBVaseU02RmE 7qghAcQB9o2ahsZUgV/MmhvG96rII1iNm4mD8sKGlNSBUizWDSZ4vFfE/rvJFFnS1Hq6 nAWEzFKHKQy7//B2QpVzVM9MG1bxAsFIKrc2wZcp4XOgPE+dGvWOU2Sd3jcuAyxOlEUP u3uQzlm8vbNZdrb5IjEsLhc8bcObCjxJL/XkNn5jtToMylq/wuYDNmhi+ZGn3Q2sawb9 zNEw== X-Gm-Message-State: AEkoouuCVVUcMglifu1J9TIZcLBefVW4sudem/D3/mD9cpzuZfPQpU5ITyT+AcYllTm8Ew== X-Received: by 10.36.253.131 with SMTP id m125mr1054565ith.24.1472072232814; Wed, 24 Aug 2016 13:57:12 -0700 (PDT) Received: from moondust.nodomain.none ([75.98.19.134]) by smtp.gmail.com with ESMTPSA id 15sm5643644itm.19.2016.08.24.13.57.10 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 24 Aug 2016 13:57:12 -0700 (PDT) From: nljlistbox2@gmail.com (N. Jackson) To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> Date: Wed, 24 Aug 2016 17:57:09 -0300 In-Reply-To: <83r39edukb.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 24 Aug 2016 19:02:12 +0300") Message-ID: <87lgzl28d6.fsf@moondust.awandering> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.5 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, martin rudalics , covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) At 19:02 +0300 on Wednesday 2016-08-24, Eli Zaretskii wrote: >> Date: Wed, 24 Aug 2016 17:46:02 +0200 >> From: martin rudalics >>=20 >> > I am having a problem restoring my desktop, when there are several >> > buffers. Instead of restoring the correct buffer as the current one,= a >> > random buffer is restored. >>=20 >> What happens when you set =E2=80=98desktop-restore-frames=E2=80=99 to ni= l? > > FWIW, the stuff works for me reliably without changing the defaulot > value of that variable. FWIW, I too have recently been bothered by my windows being populated by random buffers when I start Emacs (instead of the ones I had when I last closed Emacs). I typically have three frames with one window in each. I might say (half jokingly) that I quite like this new "feature": I get buffers popping up that I was working on six months ago and forgot all about! Starting Emacs now is always surprising. :) N. From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 21:32:56 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 01:32:56 +0000 Received: from localhost ([127.0.0.1]:39534 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcjXM-0000pI-HS for submit@debbugs.gnu.org; Wed, 24 Aug 2016 21:32:56 -0400 Received: from mail01.smtp25.com ([67.228.8.1]:39680) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcjXJ-0000p8-9H for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 21:32:54 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7P1WmaE020255 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 24 Aug 2016 21:32:48 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7P1Wmjp020254; Wed, 24 Aug 2016 21:32:48 -0400 Date: Wed, 24 Aug 2016 21:32:48 -0400 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <83wpj6dwxh.fsf@gnu.org> References: <831t1efdon.fsf@gnu.org> <83wpj6dwxh.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: d-out-001.smtp25.com-u7P1Wm2b022399 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) hmmm, maybe I am using master after all, but my emacs-version says "25.1.50.1" but my gentoo ebuild looks like its branch is master. The problem appears in both branches, however. Very strange indeed. I will try to figure out what broke and update later. On Wed, 24 Aug 2016 11:11:06 -0400, Eli Zaretskii wrote: > > > Date: Wed, 24 Aug 2016 10:53:21 -0400 > > From: John Covici > > Cc: 24298@debbugs.gnu.org > > > > Now one other bit of information. If I go back to the following > > commit it works correctly > > c97cd6c005e138856d99ecef86fa04674c34b779 > > whereas it is broke on latest git or the rc-2. > > How do you mean "go back"? The commit you show was on master, whereas > the version of Emacs reported with your bug report was 25.1, i.e. the > RC, which was tarred from the emacs-25 branch. And when you say > "latest git", which branch is that? > > FWIW, I see no such problems in RC2, either. > > Strange. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 21:33:58 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 01:33:58 +0000 Received: from localhost ([127.0.0.1]:39538 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcjYL-0000qz-RV for submit@debbugs.gnu.org; Wed, 24 Aug 2016 21:33:58 -0400 Received: from mail01.smtp25.com ([67.228.8.1]:50084) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcjYK-0000qr-Ds for 24298@debbugs.gnu.org; Wed, 24 Aug 2016 21:33:56 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7P1Xsj9020437 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 24 Aug 2016 21:33:54 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7P1Xsxo020436; Wed, 24 Aug 2016 21:33:54 -0400 Date: Wed, 24 Aug 2016 21:33:54 -0400 Message-ID: From: John Covici To: martin rudalics Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <57BDC13A.5090200@gmx.at> References: <57BDC13A.5090200@gmx.at> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: quoted-printable X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: d-out-001.smtp25.com-u7P1XsV6024465 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) I am using a text console, would that change what you are saying? On Wed, 24 Aug 2016 11:46:02 -0400, martin rudalics wrote: >=20 > > I am having a problem restoring my desktop, when there are several > > buffers. Instead of restoring the correct buffer as the current one, a > > random buffer is restored. >=20 > What happens when you set =A1desktop-restore-frames=A2 to nil? >=20 > Apparently, restoring the buffer order with framesets seems to be a > problem, see also bug#15382 and bug#23630. Sadly, not much has been > done in this area since Juanma disappeared ... >=20 > martin >=20 >=20 --=20 Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 05:17:08 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 09:17:08 +0000 Received: from localhost ([127.0.0.1]:39977 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcqma-0006l8-LI for submit@debbugs.gnu.org; Thu, 25 Aug 2016 05:17:08 -0400 Received: from mout.gmx.net ([212.227.17.22]:52859) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcqmZ-0006kv-JF for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 05:17:07 -0400 Received: from [192.168.1.100] ([212.95.7.86]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0MZ7bs-1brDro16DM-00KzN0; Thu, 25 Aug 2016 11:16:56 +0200 Message-ID: <57BEB77A.3080503@gmx.at> Date: Thu, 25 Aug 2016 11:16:42 +0200 From: martin rudalics MIME-Version: 1.0 To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> In-Reply-To: <83r39edukb.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K0:I5jOM0PUH5wKKOV6JmD8QpROkC07m/l1t/TjPjQkTo66ykgbQZx RFpYwZBt3RynakbXdbgHpRLmo0s3FKTOJTQVLYcUl45zz6xKlrNP/TOg6qw5Sde0JRw43Qp 2tPVfVB9aptvMFaJkH9QlFKZ78WbZ+/D73RUmttraI12hiCiAQqFkN8OR1qIY4ULgq4+mLd 6giQs2cJiT1btF5vGxCNg== X-UI-Out-Filterresults: notjunk:1;V01:K0:Jc85/brHG6o=:ADG3MCsWps2XDWIFPckcXn coXysPMtyHm8i/dsptWwxLKx7MQGzUco3Nx6+BFbn2/cCfVVAB7aNkFHbsrlfNtUGHbG1skqO VgyEB7UznXpnySy3ipiBfKkxdHRta8X5kb5pTrSJpjIoYlu8cyS60Z3U4YS1MxOpW51UeZO1T t0vg32wcjjUBVurSnJv36o4g1oC0ooQXzg3PKLla32G6z3SMEU9WzDcu6RzYJUOAWz867CNrN 5Da8r2ONhFKU8MdpyAxz8NqH2xwo8Dudg3MDnmMHRdbibxb7/1RAy+ZRxYGebUSM+YzzW087W C9h8wLA1wxHegPCiJ2xA/h6QyxqLd2PmKG04P+9VFoklx+T13PD++Ee2LE4lFy/JcZ5KY4PUw Vddxwa7iGSklxGcyVsfTYUsc+765pez/SKhQS9jV4AOi2nIC5vOn3xfk2ZQwucsIA6BBewYs8 4mIKcWrdFSEqgqYw3JA/Lq5SbxEG2bjp15i8Q0+ojvE76GW7u+8/jRjMyS8dfH+pQe1qfBB5h RGVxbfighfNmBwmscKQvGBa3K+ymG0VGCyprmKPY/jnqQhflobqVUJ/89XZsAp05DZF818Mh/ BG4qOIRRhrV4Op9Cn3CeNMzcXNTFrsLgK1ghUdKQ6XTyO7/qDzFE9cRUNFFmju3LzQxIyOOib JbtaATNSPL2+drntr6dPRDVKw2Zwtiv3hpsyEPjSKU0US2TmK2xoh7CMVmUFeVtQCqRmlPNEj VZCQo6TmFIgdsq4DyRh1wpaDfPjWsza9bdJ4Zg9eCj3+GGPC/RvFZU/35QNikBvYoKe+VMifB ShkddWT5ILjZtb8bopnzXvdDOA94g== X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) >> What happens when you set =E2=80=98desktop-restore-frames=E2=80=99 to= nil? > > FWIW, the stuff works for me reliably without changing the defaulot > value of that variable. > >> Apparently, restoring the buffer order with framesets seems to be a >> problem, see also bug#15382 and bug#23630. > > Doesn't happen here, FWIW. Which seems to indicate that some other issue plays a role here. martin From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 05:17:21 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 09:17:21 +0000 Received: from localhost ([127.0.0.1]:39980 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcqmm-0006le-TP for submit@debbugs.gnu.org; Thu, 25 Aug 2016 05:17:21 -0400 Received: from mout.gmx.net ([212.227.17.21]:51084) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcqmh-0006lG-1f for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 05:17:19 -0400 Received: from [192.168.1.100] ([212.95.7.86]) by mail.gmx.com (mrgmx103) with ESMTPSA (Nemesis) id 0MIuft-1bavuL2rsn-002XAo; Thu, 25 Aug 2016 11:17:04 +0200 Message-ID: <57BEB784.1070101@gmx.at> Date: Thu, 25 Aug 2016 11:16:52 +0200 From: martin rudalics MIME-Version: 1.0 To: "N. Jackson" , Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <87lgzl28d6.fsf@moondust.awandering> In-Reply-To: <87lgzl28d6.fsf@moondust.awandering> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:CkgL6KlplHfK/HWQwpU470M5gMU+Ed/iOHFU4aIlWJ/3RGlNTwU rnn+d1enSAncCqcd+SEy5iwIkWVNaBdiZID3wnzdkwSgaIQtI+LxnxkuMgz/LvEbV7kU3n7 BqfmP7CQPlUaVgEO9CtO58j4oOjDKvFJ30SKKthsKA9bWuZsHhGCCtFbJ7REF7Ygl5L6DvV NHF4i1vpo3kvCtBp7Tkwg== X-UI-Out-Filterresults: notjunk:1;V01:K0:ubF6nJbrlHM=:nR3sQp9lDnkGSEq12hKjgT gU+UFQAKA8ENhsDbRCfVqE+/oS6J7GI3x/Y4inZE4e5URygmIKCDrGHTHkRmsBeTTyq/iun16 r3msvXwwJ3kMUGBCPXJlE67q++UTMw2W6OVntCkXit8c3orJDsIccz8+Ce2z2VmBFGchONPl0 3WMXmjbnxYFh6DfzCDvIr2cAYLldE88DOeU07ABRi7Ukh29SyaVCl2/rI5aYiANZLFLuLFBgw ysuvslWvRmVuZSs7poRF8y/6YPwgZnv0BU7bbujEHQ/7vtfv79Fje4RkgfN3y05sAMOkOk718 UoG8AO9yr53qjVivfxi+jNgWS+ifXTb48jnUa6vIFVqnDCJ6A6DENez8RS6Tjaz/NyyUge+Hj AsXlSrPWg5mvJyDyAvNbcV7OQMObpxN/LZ2NpUkwIUcdpHtDuH8HdSn/QXMfMK4MYKNii0kNI 0dAaR6jIUR2klV+ycFjA+HRn4mf/zRyewlBWITSH1YxEgYPtX9vPjQzbEcnJUrQf8hFXfw8ZG cfrCAVMre9QnnOs0E1LXwGPzOpOS9v0mB5PF2QJSqJzg/c8/1jd0fpZsXdj4z+FZOR9hdyCjv Uq/1Ti1o/IatpV4Dx95QXGe+mA8so5zePXnKE8Sn+oXngZx30FvO34izvbUZcBBTLjJkGdVNr 6wHUg7if1cFIuw3L5N31tjaDNRKF3sqTxVXBBRP75INU7D1vhEHJ3NHKM2nKKkOO15wHsGJjp sXwrESlKRXP9RWuTtqqBOhcJq+5JoRhjdQoKhKjts08wk85TEAPHTK4+BRDo3ghSNJ1KB4HnP Hjuk+eBNZty8Rca/WRVg+tpc9OCuQ== X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) > I might say (half jokingly) that I quite like this new "feature": I > get buffers popping up that I was working on six months ago and forgot > all about! At least this part seems hardly related to framesets. It might be related to your desktop file settings. martin From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 05:17:26 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 09:17:26 +0000 Received: from localhost ([127.0.0.1]:39983 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcqms-0006lu-3f for submit@debbugs.gnu.org; Thu, 25 Aug 2016 05:17:26 -0400 Received: from mout.gmx.net ([212.227.17.22]:54133) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcqmq-0006lV-M7 for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 05:17:25 -0400 Received: from [192.168.1.100] ([212.95.7.86]) by mail.gmx.com (mrgmx101) with ESMTPSA (Nemesis) id 0MDV5t-1bMZu52Dnx-00Gr8u; Thu, 25 Aug 2016 11:17:16 +0200 Message-ID: <57BEB790.2000405@gmx.at> Date: Thu, 25 Aug 2016 11:17:04 +0200 From: martin rudalics MIME-Version: 1.0 To: covici@ccs.covici.com Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:2ZrQX+pGktsBsMXf3zhlcsA7XaQ3ba4siu0K7CDwjjL3GhCt4md Lt058nSSvmN71Xj8JARLtWzRA/CHoalRUfJCuxks8CaWiIdf9skbb8qRGuIkzvImlB4KGsq S8uyW3ZcfJ6UfqC1watDbs769QVRpBzKUz2E8RkAfvlShQD+jRMFxSr9hDqb6RWVR+HwNlJ P8jtcQ7+jYZeTRYFtJkdw== X-UI-Out-Filterresults: notjunk:1;V01:K0:eKCA0AmG5uw=:FDdRRFsrG4VfCpZ0CEzoYh Nmky11l2ccV5cpHvE41tcM4RvfTqZbZnjavfLw11qlYdigw9aoWBOrTxNJKyHwzwYspfn5lON 6XwUPilz18WgHPzvWltgf0JAfVXM7u5VsRFBnQkcqCNGhoPGoZ3u9CsB4L9VPgRYPBGOl1gi8 F9zoYcZZbpDAsop66oKbSH+Yiro7UGWqwrQLdMb+YeBec2mWX83WnEB3ElSGUafFlUqx2gKEB j/M7mmcCoS3UC8G3+kSsEx01aPzXWbNmCJhgmdWsWh1p6Q/P6QOBLU+udiCuNC54pti44n1dl 6BZ+O8Usce+hmShePPcQv02Vwh5ZHTiG+opO7d+SDbEEd2O25Sioc4ASZe/Dy/b+p49tCwIUU 5txWWxM/XxaS6MKkI2oHtfSWvy8q/UVVZhYIWZZWCdGYUPyrXELKVoCHdjVUMDd4MwFbYH6TE CAhrqBz/5Z3XWW9s2tKOJf05HAnYd9m3cJZL4jLq8ntL21VbPgJgldHv3PU+LH6pedClBOB3i KrvTKR4hnkUrxlN5m6Bci59IuTPKeYBCIrZp6B6WVtJE6ScvYzH4yrfAFKObh6eEw9yQ0AZyF 5ZPf1q4nXVkLuGwnD5cILCThMfjDJi1IGK69nOkaxBlXcA+r5VNQuI4mTmfi9SdGdTG1FDLze yG5aPYknnHXYcBVPzGeqtkYK0glYf3oc4G/M5vGC+GkuazTYWC6qnh0zXj+lne8Adm0V6nnzf slmtWTyb13VUPaTMrxhy3pYID9BSPaAbs9pucKdOhl/c6++L2g9hyw5V4l6GsH2UStAzrnKaK rMCOwzt0KFZjOu7JwSe/CRBHOhRdg== X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) > I am using a text console, would that change what you are saying? I don't think so. IIUC framesets should apply everywhere. martin From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 06:56:06 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 10:56:06 +0000 Received: from localhost ([127.0.0.1]:40035 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcsKL-0002dg-P0 for submit@debbugs.gnu.org; Thu, 25 Aug 2016 06:56:05 -0400 Received: from mail0205.smtp25.com ([174.37.170.205]:48996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcsKJ-0002dW-IO for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 06:56:04 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7PAu0p3006417 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Aug 2016 06:56:00 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7PAu0HL006413; Thu, 25 Aug 2016 06:56:00 -0400 Date: Thu, 25 Aug 2016 06:56:00 -0400 Message-ID: From: John Covici To: martin rudalics Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <57BEB790.2000405@gmx.at> References: <57BDC13A.5090200@gmx.at> <57BEB790.2000405@gmx.at> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: s-out-001.smtp25.com-u7PAu03p031653 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Thu, 25 Aug 2016 05:17:04 -0400, martin rudalics wrote: > > > I am using a text console, would that change what you are saying? > > I don't think so. IIUC framesets should apply everywhere. How would you have more than one frame on a text console, or is there another meaning to framesets? -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 08:28:07 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 12:28:07 +0000 Received: from localhost ([127.0.0.1]:40076 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bctlP-0006Qk-AY for submit@debbugs.gnu.org; Thu, 25 Aug 2016 08:28:07 -0400 Received: from mout.gmx.net ([212.227.15.18]:54433) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bctlO-0006QE-1x for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 08:28:06 -0400 Received: from [192.168.1.100] ([212.95.7.86]) by mail.gmx.com (mrgmx003) with ESMTPSA (Nemesis) id 0LkgAG-1b2SY33W8i-00aS9M; Thu, 25 Aug 2016 14:27:55 +0200 Message-ID: <57BEE449.1000706@gmx.at> Date: Thu, 25 Aug 2016 14:27:53 +0200 From: martin rudalics MIME-Version: 1.0 To: covici@ccs.covici.com Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <57BEB790.2000405@gmx.at> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:xADk0bEzogF5YQvk+FIuQyj6xAixqOhsorNd1jkt0ld3jbyEm/V 8MIbb50DYoDwn2iVeh1FLuUiPVg+wA/xj6APuPW//gQMsf3gPrfIvN4UymeIn0rRxtH7A4r KgAtbApEq6C/creXUUuAH0tAg90Wbfw8GAwoZzOR6tnO0s6DLsTcWSn4yfqd9Yfte68kqBK 0x4/ZI68MaTAmFc5kYuHg== X-UI-Out-Filterresults: notjunk:1;V01:K0:u/F55iH2oXU=:6khbHltj73KDX9og2zLpsF jGPUCeZzPQh8Jl+2rbvRhv7IZUYPDbsvBmvXw3lV9BlSj25Me/ODvx+Q1RR7iWD1j5iGUpQeF c9ekr4t//KiEtPtCgmhjwaTXeq0lOgYXZZB11Bl3q97WhyH6aGt0sT798QQaxbve7T2YqETrE FydDv8WQKn73gf3C2nVHsFNRNtIgtyCDcDnZ5pkkHPARGxzcWE7QD/zt5ATHz3LVcSinQhSm/ f1vMfyjfoJekxG8yqrvor9yIukxWg+VgXwfdGtg2K+ThB0PK0I2/C6d+LoFQsWWqPo9I7nKxP 3GPQA7CdF47HMA6vswY0Ugo7xjJh3fOWejffEvXOHL9DE/9IP4eLZ4WXQQ8SJ2dJolnPZgHYu DK1ss9VXLYGMJ0bksUSXZh1xAUwZ/QR9L/6xCkyE+bUfENQollPTRT6dtqApFRjk8VL99avpo 9M/9czFbE8bIf4rGTVmDGQsoqoEuDJWXM+c9gwlNxgfIzM+YgRloUYR/b2wHyj49hjggpcfvK h948Vm5uPDtJfRDuvYMqiVdVH3gMeUsPAp+KiQmnlYQn0IeOY4GXbReCYQbflFyCGKEPT37cO rXHQQrENEc72DZokOmyicCo3rKnlAnPo7wK9eUKoFW60pQz3yE2SR8eKzsG00V6UxI01Md+iN NeORLjX6byLHhUHbKR4cyahTDwWdxo9hdHW/a//vV1uFowrXXIr9omoRA6/lZKHJ6H2Mg6WhV LQnkXs7kMH/qI4vu826CoCtez0gJ4fUtD5gbmalDZfT+pAQLAW8BLYUM8zvI6FTExInA+yoFH 0rfqpX5ozRDuFUER0A6c6l+hJeRRA== X-Spam-Score: -0.1 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) > How would you have more than one frame on a text console, (progn (make-frame) (frame-list)) > or is there > another meaning to framesets? Even if there is one and only one frame to restore, the use of framesets might clobber the current buffer and/or the buffer list. martin From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 09:10:00 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 13:10:00 +0000 Received: from localhost ([127.0.0.1]:40093 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcuPw-0007Q3-BK for submit@debbugs.gnu.org; Thu, 25 Aug 2016 09:10:00 -0400 Received: from mail-it0-f50.google.com ([209.85.214.50]:36009) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcuPv-0007Po-2i for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 09:09:59 -0400 Received: by mail-it0-f50.google.com with SMTP id e63so270097241ith.1 for <24298@debbugs.gnu.org>; Thu, 25 Aug 2016 06:09:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=jZbNMnPXPmLjFTXwbFlC8CFP5X/mrL6nsYOD0ztk/40=; b=da3akRsGAP5GWqRHdOl/zCGxPgBIVCJtcFGS/L4WpEp4gijjh7ZkQzDcW4u8QY0+2+ 9pHjppRbcokd4FqLUPNueksC9J4If7TQrA6Nqk6ELgv85zMv+DdZaRIlsvi9RQPbk7YA w3iz6sau5tYo0VXYTGN0JlAwmDWOAvsV5nlNh/BbG13UXIT8hdBFIvPad4Loitzonbod cMRM/U+ciJ7Lqhu7STUO+0t7e5lnWDKOLPuTxL5UJcsDLYLoufvKvBUMlcC6ekt7jvOV NkqyRSxQt3fuE2fXR1MhZp2kEbRNKFGMwQQ5W8PH27y5RqsJtBr7p6a7i6G5xtuDIq6J W6Kw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=jZbNMnPXPmLjFTXwbFlC8CFP5X/mrL6nsYOD0ztk/40=; b=AX4C6GNpKGuEaUH6FRPMfX2Y2GV9YE5l1OTHi2B6jT1QaV7LrUH2Gv3H58KoF5e2+u bosnpwEQHYMLET5zVFuVdfwGAr5+cEtKbU51cFeX5LOaGF2XigxNqCIuBvO6HJrOcSDP BbwDjmf9/1teeTmgbI7qdh/62qv3hkwHm5NUJRFLxsynMH56btqtLjup/BiW3wkRcxe+ 0jrdJoKpBdqBZ4/I70Tui8kGLynPSaYdU2lkiQNP/qwYqmglhLsce+OOjrebSBr6CNLF opmIRJDEddwdMAct3zoUYVLOr75zGq834Xk1X1WcwvObvnVfIgsCO87xQ+bnM2DpJP6N Ylbg== X-Gm-Message-State: AEkooushVFI3RNxLeLFOFCNN9rY3fxzNgv6JxILHw3YBZVoQ41PLBpAkTvEvP64l0ZumXQ== X-Received: by 10.36.120.197 with SMTP id p188mr4880816itc.44.1472130593729; Thu, 25 Aug 2016 06:09:53 -0700 (PDT) Received: from moondust.nodomain.none ([75.98.19.134]) by smtp.gmail.com with ESMTPSA id n23sm5452353ioe.18.2016.08.25.06.09.52 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 25 Aug 2016 06:09:53 -0700 (PDT) From: nljlistbox2@gmail.com (N. Jackson) To: martin rudalics Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <87lgzl28d6.fsf@moondust.awandering> <57BEB784.1070101@gmx.at> Date: Thu, 25 Aug 2016 10:09:50 -0300 In-Reply-To: <57BEB784.1070101@gmx.at> (martin rudalics's message of "Thu, 25 Aug 2016 11:16:52 +0200") Message-ID: <87h9a9yoyp.fsf@moondust.awandering> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.5 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, Eli Zaretskii , covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) At 11:16 +0200 on Thursday 2016-08-25, martin rudalics wrote: >> I might say (half jokingly) that I quite like this new "feature": I >> get buffers popping up that I was working on six months ago and forgot >> all about! > > At least this part seems hardly related to framesets. It might be > related to your desktop file settings. Hi Martin, At the risk of further noise but to be sure that I haven't muddied the waters with my previous post, to be clear: - These are buffers that have been open in every session since I was working on them, they just haven't had windows for months (or years). - When I said they're "popping up" I really ought to have just said that they're randomly being given windows when Emacs starts. - (These are in GUI frames on GNU/Linux.) I understood this to be the complaint of the OP which I understood Eli to have said he doesn't see: At 07:31 -0400 on Wednesday 2016-08-24, John Covici wrote: > I am having a problem restoring my desktop, when there are several > buffers. Instead of restoring the correct buffer as the current one, a > random buffer is restored. I don't believe I have any settings in this area at all, other than these two settings in my custom-set-variables: '(desktop-path (quote ("." "~/.emacs.d/" "~"))) '(desktop-save-mode t) I haven't yet tried your suggestion of setting desktop-restore-frames to `nil' (it is currently `t') because it's doc string merely says: When non-nil, save and restore the frame and window configuration. See related options `desktop-restore-reuses-frames', `desktop-restore-in-current-display', and `desktop-restore-forces-onscreen'. This neglects to mention what it does when it's set to `nil'. N. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 10:48:07 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 14:48:07 +0000 Received: from localhost ([127.0.0.1]:40734 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcvwt-0001cG-Ie for submit@debbugs.gnu.org; Thu, 25 Aug 2016 10:48:07 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44364) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcvwr-0001bm-5q for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 10:48:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcvwh-000533-Oz for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 10:47:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38754) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcvwh-00052r-Lw; Thu, 25 Aug 2016 10:47:55 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4395 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcvwf-0005l0-Pa; Thu, 25 Aug 2016 10:47:54 -0400 Date: Thu, 25 Aug 2016 17:48:14 +0300 Message-Id: <83h9a8ewgh.fsf@gnu.org> From: Eli Zaretskii To: martin rudalics In-reply-to: <57BEB77A.3080503@gmx.at> (message from martin rudalics on Thu, 25 Aug 2016 11:16:42 +0200) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > Date: Thu, 25 Aug 2016 11:16:42 +0200 > From: martin rudalics > CC: covici@ccs.covici.com, 24298@debbugs.gnu.org > > >> What happens when you set ‘desktop-restore-frames’ to nil? > > > > FWIW, the stuff works for me reliably without changing the defaulot > > value of that variable. > > > >> Apparently, restoring the buffer order with framesets seems to be a > >> problem, see also bug#15382 and bug#23630. > > > > Doesn't happen here, FWIW. > > Which seems to indicate that some other issue plays a role here. Most probably. For starters, I'd suggest that people who see this problem compare the order of buffers in their .emacs.desktop file with what was on screen before Emacs was shut down or saved the desktop. Does the current buffer appear where we expect it to be? From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 10:50:17 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 14:50:17 +0000 Received: from localhost ([127.0.0.1]:40738 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcvyz-0001fP-0k for submit@debbugs.gnu.org; Thu, 25 Aug 2016 10:50:17 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45343) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcvyx-0001fB-FF for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 10:50:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcvyo-0005uI-KC for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 10:50:10 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38791) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcvyo-0005tL-H6; Thu, 25 Aug 2016 10:50:06 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4400 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcvym-0005w5-Lc; Thu, 25 Aug 2016 10:50:05 -0400 Date: Thu, 25 Aug 2016 17:50:24 +0300 Message-Id: <83fupsewcv.fsf@gnu.org> From: Eli Zaretskii To: martin rudalics In-reply-to: <57BEE449.1000706@gmx.at> (message from martin rudalics on Thu, 25 Aug 2016 14:27:53 +0200) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <57BEB790.2000405@gmx.at> <57BEE449.1000706@gmx.at> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > Date: Thu, 25 Aug 2016 14:27:53 +0200 > From: martin rudalics > Cc: 24298@debbugs.gnu.org > > > How would you have more than one frame on a text console, > > (progn > (make-frame) > (frame-list)) Or even C-x 5 f SOME-FILE RET C-x 5 o (and also look at the left corner of the mode line to see the frame name change when you do the above). From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 10:52:09 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 14:52:09 +0000 Received: from localhost ([127.0.0.1]:40742 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcw0n-0001ih-BH for submit@debbugs.gnu.org; Thu, 25 Aug 2016 10:52:09 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45862) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcw0l-0001iS-Hk for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 10:52:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcw0a-0006V6-N3 for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 10:52:02 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38815) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcw0S-0006T5-A8; Thu, 25 Aug 2016 10:51:48 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4401 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcw0Q-00068A-BD; Thu, 25 Aug 2016 10:51:46 -0400 Date: Thu, 25 Aug 2016 17:52:05 +0300 Message-Id: <83eg5cewa2.fsf@gnu.org> From: Eli Zaretskii To: nljlistbox2@gmail.com (N. Jackson) In-reply-to: <87h9a9yoyp.fsf@moondust.awandering> (nljlistbox2@gmail.com) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <87lgzl28d6.fsf@moondust.awandering> <57BEB784.1070101@gmx.at> <87h9a9yoyp.fsf@moondust.awandering> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at, covici@ccs.covici.com X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > From: nljlistbox2@gmail.com (N. Jackson) > Cc: Eli Zaretskii , 24298@debbugs.gnu.org, covici@ccs.covici.com > Date: Thu, 25 Aug 2016 10:09:50 -0300 > > I haven't yet tried your suggestion of setting desktop-restore-frames to > `nil' (it is currently `t') because it's doc string merely says: > > When non-nil, save and restore the frame and window configuration. > See related options `desktop-restore-reuses-frames', > `desktop-restore-in-current-display', and `desktop-restore-forces-onscreen'. > > This neglects to mention what it does when it's set to `nil'. Quite obviously, it doesn't do what is described for the non-nil value. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 11:31:42 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 15:31:43 +0000 Received: from localhost ([127.0.0.1]:40781 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcwd4-0002he-Lm for submit@debbugs.gnu.org; Thu, 25 Aug 2016 11:31:42 -0400 Received: from mail0205.smtp25.com ([174.37.170.205]:37863) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcwd2-0002hT-Te for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 11:31:41 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7PFVaS0022486 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Aug 2016 11:31:36 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7PFVZfJ022484; Thu, 25 Aug 2016 11:31:35 -0400 Date: Thu, 25 Aug 2016 11:31:35 -0400 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <83h9a8ewgh.fsf@gnu.org> References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: quoted-printable X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: s-out-001.smtp25.com-u7PFVb9h009915 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, martin rudalics X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) What I found was that the random buffer appears and if I get the buffer list, *scratch is next and then the buffers as I had them before. If I close and reopen, a new random buffer appears followed by the previous random buffer, etc. I hope this helps. On Thu, 25 Aug 2016 10:48:14 -0400, Eli Zaretskii wrote: >=20 > > Date: Thu, 25 Aug 2016 11:16:42 +0200 > > From: martin rudalics > > CC: covici@ccs.covici.com, 24298@debbugs.gnu.org > >=20 > > >> What happens when you set =A1desktop-restore-frames=A2 to nil? > > > > > > FWIW, the stuff works for me reliably without changing the defaulot > > > value of that variable. > > > > > >> Apparently, restoring the buffer order with framesets seems to be a > > >> problem, see also bug#15382 and bug#23630. > > > > > > Doesn't happen here, FWIW. > >=20 > > Which seems to indicate that some other issue plays a role here. >=20 > Most probably. >=20 > For starters, I'd suggest that people who see this problem compare the > order of buffers in their .emacs.desktop file with what was on screen > before Emacs was shut down or saved the desktop. Does the current > buffer appear where we expect it to be? --=20 Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 12:22:32 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 16:22:32 +0000 Received: from localhost ([127.0.0.1]:40801 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcxQG-0005Uw-64 for submit@debbugs.gnu.org; Thu, 25 Aug 2016 12:22:32 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40339) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bcxQF-0005Ui-9y for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 12:22:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcxQ9-0000ie-6u for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 12:22:26 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:40130) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcxQ9-0000iY-36; Thu, 25 Aug 2016 12:22:25 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4629 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bcxQ8-00082s-20; Thu, 25 Aug 2016 12:22:24 -0400 Date: Thu, 25 Aug 2016 19:22:43 +0300 Message-Id: <838tvkes30.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Thu, 25 Aug 2016 11:31:35 -0400) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > Date: Thu, 25 Aug 2016 11:31:35 -0400 > From: John Covici > Cc: martin rudalics , 24298@debbugs.gnu.org > > What I found was that the random buffer appears and if I get the > buffer list, *scratch is next and then the buffers as I had them > before. If I close and reopen, a new random buffer appears followed > by the previous random buffer, etc. Is that exactly what you see in the .emacs.desktop file? IOW, is the wrong order recorded in the file (which would mean the problem happens when the desktop file is written), or is the order in the file correct, which would mean the problem happens when restoring the session from the file? Thanks. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 14:23:03 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 18:23:03 +0000 Received: from localhost ([127.0.0.1]:40834 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bczIt-00005V-B9 for submit@debbugs.gnu.org; Thu, 25 Aug 2016 14:23:03 -0400 Received: from mail01.smtp25.com ([67.228.8.1]:33538) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bczIr-0008WT-QE for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 14:23:02 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7PIMxri013549 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Aug 2016 14:22:59 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7PIMv76013525; Thu, 25 Aug 2016 14:22:57 -0400 Date: Thu, 25 Aug 2016 14:22:57 -0400 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <838tvkes30.fsf@gnu.org> References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> <838tvkes30.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: d-out-001.smtp25.com-u7PIMxuW031326 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) On Thu, 25 Aug 2016 12:22:43 -0400, Eli Zaretskii wrote: > > > Date: Thu, 25 Aug 2016 11:31:35 -0400 > > From: John Covici > > Cc: martin rudalics , 24298@debbugs.gnu.org > > > > What I found was that the random buffer appears and if I get the > > buffer list, *scratch is next and then the buffers as I had them > > before. If I close and reopen, a new random buffer appears followed > > by the previous random buffer, etc. > > Is that exactly what you see in the .emacs.desktop file? IOW, is the > wrong order recorded in the file (which would mean the problem happens > when the desktop file is written), or is the order in the file > correct, which would mean the problem happens when restoring the > session from the file? > > Thanks. I think it must be on the restore, because if I go to a version which works, it gives me the original buffer I had. I was looking in the buffer list c-x-c-b for the order. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 14:30:09 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 18:30:09 +0000 Received: from localhost ([127.0.0.1]:40838 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bczPl-0000H5-3t for submit@debbugs.gnu.org; Thu, 25 Aug 2016 14:30:09 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40378) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bczPk-0000G2-3O for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 14:30:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bczPb-0004Na-JB for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 14:30:02 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:41593) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bczPb-0004N7-Fk; Thu, 25 Aug 2016 14:29:59 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2315 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bczPZ-0004Uy-Ii; Thu, 25 Aug 2016 14:29:58 -0400 Date: Thu, 25 Aug 2016 21:30:17 +0300 Message-Id: <834m68em6e.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Thu, 25 Aug 2016 14:22:57 -0400) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> <838tvkes30.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > Date: Thu, 25 Aug 2016 14:22:57 -0400 > From: John Covici > Cc: rudalics@gmx.at, 24298@debbugs.gnu.org > > I was looking in the buffer list c-x-c-b for the order. Please look in the .emacs.desktop file itself. It's a text file, so is human-readable. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 15:04:17 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 19:04:17 +0000 Received: from localhost ([127.0.0.1]:40851 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bczwn-00014b-2l for submit@debbugs.gnu.org; Thu, 25 Aug 2016 15:04:17 -0400 Received: from mail0205.smtp25.com ([174.37.170.205]:55545) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bczwl-00014T-FE for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 15:04:15 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7PJ4C7M021697 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Aug 2016 15:04:12 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7PJ4BCI021679; Thu, 25 Aug 2016 15:04:11 -0400 Date: Thu, 25 Aug 2016 15:04:11 -0400 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <834m68em6e.fsf@gnu.org> References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> <838tvkes30.fsf@gnu.org> <834m68em6e.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: s-out-001.smtp25.com-u7PJ4DX0013188 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Thu, 25 Aug 2016 14:30:17 -0400, Eli Zaretskii wrote: > > > Date: Thu, 25 Aug 2016 14:22:57 -0400 > > From: John Covici > > Cc: rudalics@gmx.at, 24298@debbugs.gnu.org > > > > I was looking in the buffer list c-x-c-b for the order. > > Please look in the .emacs.desktop file itself. It's a text file, so > is human-readable. And the order does correspond to what I see in the buffer list. Aside from the damage of restoring the desktop in a version which broke the restore, it looks like I had it before the problem started. I have some 159 buffers, so I did notice this right away, but I even could reproduce it with 3 or 4 buffers. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 15:19:06 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 19:19:06 +0000 Received: from localhost ([127.0.0.1]:40863 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bd0B7-0001Qf-WD for submit@debbugs.gnu.org; Thu, 25 Aug 2016 15:19:06 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52133) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bd0B7-0001QB-9U for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 15:19:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bd0Ay-0002PC-0w for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 15:18:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.2 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:42336) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bd0Ax-0002OY-Tm; Thu, 25 Aug 2016 15:18:55 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2500 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bd0At-0006US-Tn; Thu, 25 Aug 2016 15:18:54 -0400 Date: Thu, 25 Aug 2016 22:18:56 +0300 Message-Id: <831t1cejxb.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Thu, 25 Aug 2016 15:04:11 -0400) Subject: Re: bug#24298: 25.1; problem with restoring desktop References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> <838tvkes30.fsf@gnu.org> <834m68em6e.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.3 (-----) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.3 (-----) > Date: Thu, 25 Aug 2016 15:04:11 -0400 > From: John Covici > Cc: rudalics@gmx.at, 24298@debbugs.gnu.org > > > Please look in the .emacs.desktop file itself. It's a text file, so > > is human-readable. > > And the order does correspond to what I see in the buffer list. Aside > from the damage of restoring the desktop in a version which broke the > restore, it looks like I had it before the problem started. Sorry, I'm confused: when you say "I had it", what do you mean by "it"? The desktop file records the buffer that was current in each frame, as part of the "frameset" at the beginning of the file, and then it records the list of buffers unrelated to frames. Does the frameset state the buffers correctly? From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 15:30:26 2016 Received: (at 24298) by debbugs.gnu.org; 25 Aug 2016 19:30:26 +0000 Received: from localhost ([127.0.0.1]:40879 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bd0M6-0001jO-31 for submit@debbugs.gnu.org; Thu, 25 Aug 2016 15:30:26 -0400 Received: from mail01.smtp25.com ([67.228.8.1]:33573) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bd0M4-0001jG-TD for 24298@debbugs.gnu.org; Thu, 25 Aug 2016 15:30:25 -0400 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id u7PJUNrl027131 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 25 Aug 2016 15:30:23 -0400 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id u7PJUNvb027130; Thu, 25 Aug 2016 15:30:23 -0400 Date: Thu, 25 Aug 2016 15:30:23 -0400 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: 25.1; problem with restoring desktop In-Reply-To: <831t1cejxb.fsf@gnu.org> References: <57BDC13A.5090200@gmx.at> <83r39edukb.fsf@gnu.org> <57BEB77A.3080503@gmx.at> <83h9a8ewgh.fsf@gnu.org> <838tvkes30.fsf@gnu.org> <834m68em6e.fsf@gnu.org> <831t1cejxb.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-OriginatingIP: 70.109.53.110 X-SpamH-Filter: d-out-001.smtp25.com-u7PJUN4D026573 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org, rudalics@gmx.at X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) On Thu, 25 Aug 2016 15:18:56 -0400, Eli Zaretskii wrote: > > > Date: Thu, 25 Aug 2016 15:04:11 -0400 > > From: John Covici > > Cc: rudalics@gmx.at, 24298@debbugs.gnu.org > > > > > Please look in the .emacs.desktop file itself. It's a text file, so > > > is human-readable. > > > > And the order does correspond to what I see in the buffer list. Aside > > from the damage of restoring the desktop in a version which broke the > > restore, it looks like I had it before the problem started. > > Sorry, I'm confused: when you say "I had it", what do you mean by > "it"? I mean the order of the buffers before I used a version with the problem. > > The desktop file records the buffer that was current in each frame, as > part of the "frameset" at the beginning of the file, and then it > records the list of buffers unrelated to frames. Does the frameset > state the buffers correctly? What is in the framset is correct, but when the bug is present another buffer is made current. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 03 20:51:55 2016 Received: (at 24298) by debbugs.gnu.org; 4 Dec 2016 01:51:55 +0000 Received: from localhost ([127.0.0.1]:51729 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDLy7-00011A-EX for submit@debbugs.gnu.org; Sat, 03 Dec 2016 20:51:55 -0500 Received: from mail0157.smtp25.com ([75.126.84.157]:48312) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDLy5-000110-7O for 24298@debbugs.gnu.org; Sat, 03 Dec 2016 20:51:54 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uB41pnqI020224 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for <24298@debbugs.gnu.org>; Sat, 3 Dec 2016 20:51:49 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uB41pmaF020172; Sat, 3 Dec 2016 20:51:48 -0500 Date: Sat, 03 Dec 2016 20:51:48 -0500 Message-ID: From: John Covici To: 24298@debbugs.gnu.org Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: References: User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-Filter: d-out-001.smtp25.com-uB41pnwh003891 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) OK, doing a git bisect, I found the commit which breaks my desktop restore -- I am using a text console here. [c9f7ec736b78bef5359b6da03296277c535e8e89] * lisp/desktop.el: Disable restore frameset if in non-graphic display. Thanks, I hope someone can help resolve this one. On Wed, 24 Aug 2016 07:32:01 -0400, GNU bug Tracking System wrote: > > Thank you for filing a new bug report with debbugs.gnu.org. > > This is an automatically generated reply to let you know your message > has been received. > > Your message is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > Your message has been sent to the package maintainer(s): > bug-gnu-emacs@gnu.org > > If you wish to submit further information on this problem, please > send it to 24298@debbugs.gnu.org. > > Please do not send mail to help-debbugs@gnu.org unless you wish > to report a problem with the Bug-tracking system. > > -- > 24298: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=24298 > GNU Bug Tracking System > Contact help-debbugs@gnu.org with problems > -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 04 10:28:19 2016 Received: (at 24298) by debbugs.gnu.org; 4 Dec 2016 15:28:19 +0000 Received: from localhost ([127.0.0.1]:56098 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDYiB-0001QC-GU for submit@debbugs.gnu.org; Sun, 04 Dec 2016 10:28:19 -0500 Received: from eggs.gnu.org ([208.118.235.92]:55567) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDYi8-0001Py-UZ for 24298@debbugs.gnu.org; Sun, 04 Dec 2016 10:28:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cDYi0-0003bD-Md for 24298@debbugs.gnu.org; Sun, 04 Dec 2016 10:28:11 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:58800) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cDYi0-0003b5-JP; Sun, 04 Dec 2016 10:28:08 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1650 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cDYhz-0008IC-TE; Sun, 04 Dec 2016 10:28:08 -0500 Date: Sun, 04 Dec 2016 17:28:23 +0200 Message-Id: <83oa0rlnmw.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sat, 03 Dec 2016 20:51:48 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -7.9 (-------) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -7.9 (-------) > Date: Sat, 03 Dec 2016 20:51:48 -0500 > From: John Covici > > OK, doing a git bisect, I found the commit which breaks my desktop > restore -- I am using a text console here. > > [c9f7ec736b78bef5359b6da03296277c535e8e89] * lisp/desktop.el: Disable > restore frameset if in non-graphic display. Does this mean you have more than one frame in your text-terminal sessions, after restoring the desktop? What effect does the following command produce after you restore the session? C-x 5 o If you have more than one frame, you should now see "Fn" at the left edge of the mode line, where n is a small integer, which is different from the one you saw there before the above command. From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 04 10:34:46 2016 Received: (at 24298) by debbugs.gnu.org; 4 Dec 2016 15:34:46 +0000 Received: from localhost ([127.0.0.1]:56102 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDYoQ-0001ae-6p for submit@debbugs.gnu.org; Sun, 04 Dec 2016 10:34:46 -0500 Received: from mail0157.smtp25.com ([75.126.84.157]:51230) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDYoO-0001aV-Co for 24298@debbugs.gnu.org; Sun, 04 Dec 2016 10:34:45 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uB4FYfsG025917 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sun, 4 Dec 2016 10:34:41 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uB4FYboi025854; Sun, 4 Dec 2016 10:34:37 -0500 Date: Sun, 04 Dec 2016 10:34:37 -0500 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: <83oa0rlnmw.fsf@gnu.org> References: <83oa0rlnmw.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-Filter: d-out-001.smtp25.com-uB4FYfQN028925 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) On Sun, 04 Dec 2016 10:28:23 -0500, Eli Zaretskii wrote: > > > Date: Sat, 03 Dec 2016 20:51:48 -0500 > > From: John Covici > > > > OK, doing a git bisect, I found the commit which breaks my desktop > > restore -- I am using a text console here. > > > > [c9f7ec736b78bef5359b6da03296277c535e8e89] * lisp/desktop.el: Disable > > restore frameset if in non-graphic display. > > Does this mean you have more than one frame in your text-terminal > sessions, after restoring the desktop? What effect does the following > command produce after you restore the session? > > C-x 5 o > > If you have more than one frame, you should now see "Fn" at the left > edge of the mode line, where n is a small integer, which is different > from the one you saw there before the above command. Nope, this is a text console, the command does nothing. IIn fact, it does not seem to complete. In the echo area I just get c-x-5-o sitting there. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 10 09:18:47 2016 Received: (at 24298) by debbugs.gnu.org; 10 Dec 2016 14:18:47 +0000 Received: from localhost ([127.0.0.1]:36654 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFiUB-0005wN-8p for submit@debbugs.gnu.org; Sat, 10 Dec 2016 09:18:47 -0500 Received: from eggs.gnu.org ([208.118.235.92]:59237) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFiU9-0005w9-Dc for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 09:18:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cFiTz-0008B9-RL for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 09:18:40 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:32891) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFiTz-0008B5-OL; Sat, 10 Dec 2016 09:18:35 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1439 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cFiTz-0006Y9-2D; Sat, 10 Dec 2016 09:18:35 -0500 Date: Sat, 10 Dec 2016 16:19:07 +0200 Message-Id: <83pokzg944.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sun, 04 Dec 2016 10:34:37 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: <83oa0rlnmw.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -8.0 (--------) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.0 (--------) > Date: Sun, 04 Dec 2016 10:34:37 -0500 > From: John Covici > Cc: 24298@debbugs.gnu.org > > On Sun, 04 Dec 2016 10:28:23 -0500, > Eli Zaretskii wrote: > > > > > Date: Sat, 03 Dec 2016 20:51:48 -0500 > > > From: John Covici > > > > > > OK, doing a git bisect, I found the commit which breaks my desktop > > > restore -- I am using a text console here. > > > > > > [c9f7ec736b78bef5359b6da03296277c535e8e89] * lisp/desktop.el: Disable > > > restore frameset if in non-graphic display. > > > > Does this mean you have more than one frame in your text-terminal > > sessions, after restoring the desktop? What effect does the following > > command produce after you restore the session? > > > > C-x 5 o > > > > If you have more than one frame, you should now see "Fn" at the left > > edge of the mode line, where n is a small integer, which is different > > from the one you saw there before the above command. > > Nope, this is a text console, the command does nothing. Then I'm afraid I cannot reproduce this. I tried restoring my desktop in "emacs -nw" several times, and each time I end up looking at the same 2 buffers displayed in 2 windows one below the other. Could you perhaps create the smallest desktop file that reproduces this problem for you, and post it? I'd like to experiment with it. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 10 10:02:21 2016 Received: (at 24298) by debbugs.gnu.org; 10 Dec 2016 15:02:21 +0000 Received: from localhost ([127.0.0.1]:37082 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFjAK-0007AD-S3 for submit@debbugs.gnu.org; Sat, 10 Dec 2016 10:02:21 -0500 Received: from mail0205.smtp25.com ([174.37.170.205]:41234) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFjAI-0007A1-FY for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 10:02:19 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uBAF2CJM007761 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sat, 10 Dec 2016 10:02:12 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uBAF2Bmx007759; Sat, 10 Dec 2016 10:02:11 -0500 Date: Sat, 10 Dec 2016 10:02:11 -0500 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: <83pokzg944.fsf@gnu.org> References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: multipart/mixed; boundary="Multipart_Sat_Dec_10_10:02:11_2016-1" X-SpamH-Filter: s-out-001.smtp25.com-uBAF2DGB010843 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --Multipart_Sat_Dec_10_10:02:11_2016-1 Content-Type: text/plain; charset=US-ASCII On Sat, 10 Dec 2016 09:19:07 -0500, Eli Zaretskii wrote: > > > Date: Sun, 04 Dec 2016 10:34:37 -0500 > > From: John Covici > > Cc: 24298@debbugs.gnu.org > > > > On Sun, 04 Dec 2016 10:28:23 -0500, > > Eli Zaretskii wrote: > > > > > > > Date: Sat, 03 Dec 2016 20:51:48 -0500 > > > > From: John Covici > > > > > > > > OK, doing a git bisect, I found the commit which breaks my desktop > > > > restore -- I am using a text console here. > > > > > > > > [c9f7ec736b78bef5359b6da03296277c535e8e89] * lisp/desktop.el: Disable > > > > restore frameset if in non-graphic display. > > > > > > Does this mean you have more than one frame in your text-terminal > > > sessions, after restoring the desktop? What effect does the following > > > command produce after you restore the session? > > > > > > C-x 5 o > > > > > > If you have more than one frame, you should now see "Fn" at the left > > > edge of the mode line, where n is a small integer, which is different > > > from the one you saw there before the above command. > > > > Nope, this is a text console, the command does nothing. > > Then I'm afraid I cannot reproduce this. I tried restoring my desktop > in "emacs -nw" several times, and each time I end up looking at the > same 2 buffers displayed in 2 windows one below the other. > > Could you perhaps create the smallest desktop file that reproduces > this problem for you, and post it? I'd like to experiment with it. > > Thanks. I can reproduce this with a desktop with just two buffers, what happens is when the commit is there, the wrong buffer is the current one and if I do c-x-b it has the scratch buffer as the next one rather than the previous buffer. For instance in the desktop I will send you, the current buffer is the Makefile, but when I restore the desktop, default.xml is made the current buffer instead and the scratch buffer is the default for c-x-b. Now this is not bad in itself, but in a desktop with a lot of buffers, it makes the current buffer some random one instead, so its very annoying. Here is the desktop which reproduces this every time. --Multipart_Sat_Dec_10_10:02:11_2016-1 Content-Type: application/octet-stream; name=".emacs.desktop" Content-Disposition: attachment; filename=".emacs.desktop" Content-Transfer-Encoding: base64 OzsgLSotIG1vZGU6IGVtYWNzLWxpc3A7IGNvZGluZzogZW1hY3MtbXVsZTsgLSotCjs7IC0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tCjs7IERlc2t0b3AgRmlsZSBmb3IgRW1hY3MKOzsgLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0KOzsgQ3JlYXRlZCBTdW4gRGVjICA0IDE1OjI2OjQ1IDIwMTYKOzsgRGVza3RvcCBmaWxlIGZv cm1hdCB2ZXJzaW9uIDIwOAo7OyBFbWFjcyB2ZXJzaW9uIDI1LjAuOTQuMQoKOzsgR2xvYmFsIHNl Y3Rpb246CihzZXRxIGRlc2t0b3Atc2F2ZWQtZnJhbWVzZXQgW2ZyYW1lc2V0IDEgKDIyNTk2IDMx NzQ5IDcwMzc1MiA3MjMwMDApIChkZXNrdG9wIC4gIjIwOCIpICJyb290QGNjcy5jb3ZpY2kuY29t IiBuaWwgbmlsICgoKCh0dHktdHlwZSAuICJsaW51eCIpICh0dHkgLiAiL2Rldi90dHkiKSAoZGlz cGxheS10eXBlIC4gY29sb3IpIChiYWNrZ3JvdW5kLW1vZGUgLiBkYXJrKSAoZm9yZWdyb3VuZC1j b2xvciAuICJ1bnNwZWNpZmllZC1mZyIpIChjdXJzb3ItY29sb3IgLiAid2hpdGUiKSAobWVudS1i YXItbGluZXMgLiAwKSAodmVydGljYWwtc2Nyb2xsLWJhcnMpICh0b29sLWJhci1saW5lcyAuIDAp IChiYWNrZ3JvdW5kLWNvbG9yIC4gInVuc3BlY2lmaWVkLWJnIikgKGZvbnQgLiAidHR5IikgKGhl aWdodCAuIDY3KSAod2lkdGggLiAyNDApIChtb2RlbGluZSAuIHQpICh1bnNwbGl0dGFibGUpIChm cmFtZXNldC0taWQgLiAiMDBGMS0yNTRGLUQwNkEtNkJBNSIpIChmcmFtZXNldC0tbWluaSB0KSAo bWluaWJ1ZmZlciAuIHQpKSAoKG1pbi1oZWlnaHQgLiA0KSAobWluLXdpZHRoIC4gMTApIChtaW4t aGVpZ2h0LWlnbm9yZSAuIDIpIChtaW4td2lkdGgtaWdub3JlIC4gMikgKG1pbi1oZWlnaHQtc2Fm ZSAuIDEpIChtaW4td2lkdGgtc2FmZSAuIDIpIChtaW4tcGl4ZWwtaGVpZ2h0IC4gNCkgKG1pbi1w aXhlbC13aWR0aCAuIDEwKSAobWluLXBpeGVsLWhlaWdodC1pZ25vcmUgLiAyKSAobWluLXBpeGVs LXdpZHRoLWlnbm9yZSAuIDIpIChtaW4tcGl4ZWwtaGVpZ2h0LXNhZmUgLiAxKSAobWluLXBpeGVs LXdpZHRoLXNhZmUgLiAyKSkgbGVhZiAocGl4ZWwtd2lkdGggLiAyNDApIChwaXhlbC1oZWlnaHQg LiA2NikgKHRvdGFsLXdpZHRoIC4gMjQwKSAodG90YWwtaGVpZ2h0IC4gNjYpIChub3JtYWwtaGVp Z2h0IC4gMS4wKSAobm9ybWFsLXdpZHRoIC4gMS4wKSAoYnVmZmVyICJkZWZhdWx0LnhtbCIgKHNl bGVjdGVkIC4gdCkgKGhzY3JvbGwgLiAwKSAoZnJpbmdlcyAwIDAgbmlsKSAobWFyZ2lucyBuaWwp IChzY3JvbGwtYmFycyBuaWwgMCB0IG5pbCAwIG5pbCkgKHZzY3JvbGwgLiAwKSAoZGVkaWNhdGVk KSAocG9pbnQgLiAyMzg3MikgKHN0YXJ0IC4gMjE4NzIpKSkpXSkKKHNldHEgZGVza3RvcC1taXNz aW5nLWZpbGUtd2FybmluZyBuaWwpCihzZXRxIHRhZ3MtZmlsZS1uYW1lIG5pbCkKKHNldHEgdGFn cy10YWJsZS1saXN0IG5pbCkKKHNldHEgc2VhcmNoLXJpbmcgbmlsKQooc2V0cSByZWdleHAtc2Vh cmNoLXJpbmcgJygiY2xpZW50IiAiZmlyZWZveCIgInN0cmVhbWVyIiAiZmlyZWZveCIgImRldi1w eXRob24vdXJsbGliMyIgIjgxMDMzNzI4NCIgImh0dHBkIiAiXiAqbW9kIiAiXm1vZCIgImFwYWNo ZSIgIl5tb2QiICJtb2R1bGUiICJhcGFjaGUiICJweV9tb2RfdmFyIiAicHlfY3YiICJweV9jdl9t b2QiKSkKKHNldHEgcmVnaXN0ZXItYWxpc3QgJygoOTkgLiAid2Vhay1hbGdvcml0aG1zIikgKDk4 IC4gIihhZGQtaG9vaydjLW1vZGUtY29tbW9uLWhvb2sgXG4gKGZ1bmN0aW9uKGxhbWJkYSgpXG4o Yy10b2dnbGUtYXV0by1zdGF0ZSAxKSkpKVxuICAgKGF1dG9sb2FkICdjc2hhcnAtbW9kZSBcImNz aGFycC1tb2RlXCIgXCJNYWpvciBtb2RlIGZvciBlZGl0aW5nIEMjIGNvZGUuXCIgdClcbiAgIChz ZXRxIGF1dG8tbW9kZS1hbGlzdFxuICAgICAgKGFwcGVuZCAnKChcIlxcXFwuY3MkXCIgLiBjc2hh cnAtbW9kZSkpIGF1dG8tbW9kZS1hbGlzdCkpXG4gICAoc2V0cSBhdXRvLW1vZGUtYWxpc3RcbiAg ICAgIChhcHBlbmQgJygoXCJcXFxcLmNzJFwiIC4gY3NoYXJwLW1vZGUpKSBhdXRvLW1vZGUtYWxp c3QpKVxuIikgKDY1IC4gIjxleHRlbnNpb24gbmFtZSA9IFwidHJ1bmsgdG8gZ2FsYXh5dm9pY2Vc Ij5cbjxjb25kaXRpb24gZmllbGQ9XCJkZXN0aW5hdGlvbl9udW1iZXJcIiBleHByZXNzaW9uPVwi XihcXCoyNyguKikpJFwiPlxuICAgICAgPGFjdGlvbiBhcHBsaWNhdGlvbj1cInNldFwiIGRhdGE9 XCJlZmZlY3RpdmVfY2FsbGVyX2lkX251bWJlcj0kJHtvdXRib3VuZF9jYWxsZXJfaWRfbnVtYmVy fVwiLz5cbiAgICAgIDxhY3Rpb24gYXBwbGljYXRpb249XCJzZXRcIiBkYXRhPVwiZWZmZWN0aXZl X2NhbGxlcl9pZF9uYW1lPSQke291dGJvdW5kX2NhbGxlcl9pZF9uYW1lfVwiLz5cbjxhY3Rpb24g YXBwbGljYXRpb249XCJzZXRcIiBkYXRhPVwicmVhbF9kZXN0aW5hdGlvbl9udW1iZXI9JHtkZXN0 aW5hdGlvbl9udW1iZXJ9XCIvPlxuPGFjdGlvbiBhcHBsaWNhdGlvbj1cImV4ZWN1dGVfZXh0ZW5z aW9uXCIgZGF0YT1cInNldHVwX3JlY29yZGluZ1wiLz5cbjxhY3Rpb24gYXBwbGljYXRpb249XCJi cmlkZ2VcIiBkYXRhPVwic29maWEvZ2F0ZXdheS9nYWxheHl2b2ljZS8kMlwiLz5cbjwvY29uZGl0 aW9uPlxuPC9leHRlbnNpb24+XG4iKSAoOTcgLiAiaW1hZ2U9L2Jvb3Qvdm1saW51ei00LjQuMjct Z2VudG9vXG5sYWJlbD00LjQuMjctemZzXG5yZWFkLW9ubHlcbmFwcGVuZD1cIm5vc3BsYXNoIHJh bWRpc2s9ODE5MiAgIHZpZGVvPXV2ZXNhZmI6MTkyMHgxMDgwICBzcGVha3VwLnN5bnRoPXNwa291 dCB2bWFsbG9jPTI1Nk0gIGluaXQ9L3Vzci9saWIvc3lzdGVtZC9zeXN0ZW1kIHJkLnNoZWxsPTEg ICAgICAgcmQubHZtLnZnPXBvb2wtZmlsZXMgaXJxcG9sbD0xXCJcbmluaXRyZD0vYm9vdC9pbml0 cmFtZnMtNC40LjI3LWdlbnRvby5pbWdcbiIpKSkKKHNldHEgZmlsZS1uYW1lLWhpc3RvcnkgJygi L2V0Yy9wdWxzZS8iICIvZXRjL3B1bHNlL2RhZW1vbi5jb25mIiAiL2V0Yy9wb3J0YWdlL3BhY2th Z2UudXNlIiAiL3Vzci9wb3J0YWdlL3d3dy1jbGllbnQvZmlyZWZveC9maXJlZm94LTUwLjAuMi5l YnVpbGQiICIvdXNyL3BvcnRhZ2Uvd3d3LWNsaWVudC9maXJlZm94L21ldGFkYXRhLnhtbCIgIi9l dGMvcG9ydGFnZS9wYWNrYWdlLnVzZSIgIi91c3Ivc3JjL2ZyZWVzd2l0Y2gvbGlicy9hcHItdXRp bC9NYWtlZmlsZSIgIi91c3Ivc3JjL3dvcmxkX3VwZGF0ZS50eHQiICIvZXRjL3BvcnRhZ2UvcGFj a2FnZS5tYXNrIiAiL3Vzci9zcmMvd29ybGRfdXBkYXRlLnR4dCIgIi9ldGMvcG9ydGFnZS9wYWNr YWdlLnVzZSIgIi9ldGRjL3BvcnRhZ2UvcGFja2FnZS51c2UiICIvdmFyL2xvZy9nZXRhYWEubG9n IiAiL3Vzci9iaW4vbGludXhkb2MiICIvdXNyL2Jpbi9saW51eGRvYy10b29scyIgIi92YXIvbG9n L2FwYWNoZTIvc3NsX3JlcXVlc3RfbG9nLjEiICIvdmFyL2xvZy9hcGFjaGUyL3NzbF9yZXF1ZXN0 X2xvZyIgIn4vLm15a2VybXJjIiAifi8ua2VybXJjIiAiL3Vzci9zYmluL3JraHVudGVyIiAiL3Vz ci9iaW4vcmtodW50ZXIiICIvdXNyL3NyYy9vcmNhL2NvbmZpZ3VyZSIgIi91c3Ivc3JjL29yY2Ev Y29uZmlnLmxvZyIgIi91c3Ivc3JjL3JzczJlbWFpbC9yc3MyZW1haWwucHkiICIvdXNyL2xvY2Fs L2ZyZWVzd2l0Y2gvbG9nL2ZyZWVzd2l0Y2gubG9nIiAiL3Vzci9zcmMvd29ybGRfdXBkYXRlLnR4 dCIgIi92YXIvbG9nL3JraHVudGVyLmxvZyIgIi91c3Ivc3JjL2xpbnV4LTQuNC4zMS1nZW50b28v LmNvbmZpZyIgIi91c3Ivc3JjL3dvcmxkX3VwZGF0ZS50eHQiICIvZXRjL3BvcnRhZ2UvcGFja2Fn ZS51c2UiICIvZXRjL3BvcnRhZ2UvcGFja2FnZS5tYXNrIiAiL3Vzci9sb2NhbC9mcmVlc3dpdGNo L2xvZy9jZHItY3N2L0ZVTExfTWFzdGVyLmNzdiIgIi92YXIvbG9nL3BvcnRhZ2UiICIvdmFyL3Rt cC9wb3J0YWdlL2FwcC1hY2Nlc3NpYmlsaXR5L2JybHR0eS05OTk5L3dvcmsvYnJsdHR5LTk5OTkv RG9jdW1lbnRzLyIgIi92YXIvdG1wL3BvcnRhZ2UvYXBwLWFjY2Vzc2liaWxpdHkvYnJsdHR5LTk5 OTkvd29yay9icmx0dHktOTk5OS9Eb2N1bWVudHMvTWFrZWZpbGUiICIvdmFyL2xvZy9wb3J0YWdl IiAiL2V0Yy9saWxvLmNvbmYiICIvdXNyL3NyYy90ZW1wLnR4dCIgIi92YXIvdG1wL3BvcnRhZ2Uv c3lzLWtlcm5lbC9zcGwtOTk5OS93b3JrL3NwbC05OTk5L2NvbmZpZ3VyZSIgIi92YXIvdG1wL3Bv cnRhZ2Uvc3lzLWtlcm5lbC9zcGwtOTk5OS93b3JrL3NwbC05OTk5L2NvbmZpZy5sb2ciICIvdmFy L3RtcC9wb3J0YWdlL3N5cy1rZXJuZWwvc3BsLTk5OTkvd29yay9zcGwtOTk5OS9jb25maWd1cmUi ICJ+Ly56c2hyYy5+NX4iICJ+Ly56c2hyYyIgIi92YXIvdG1wL3BvcnRhZ2Uvc3lzLWtlcm5lbC9z cGwtOTk5OS93b3JrL3NwbC05OTk5L2NvbmZpZ3VyZSIgIi92YXIvbG9nL3BvcnRhZ2UiICIvdXNy L3BvcnRhZ2Uvc3lzLWtlcm5lbC9zcGwvc3BsLTk5OTkuZWJ1aWxkIiAiL3Zhci90bXAvcG9ydGFn ZS9zeXMta2VybmVsL3NwbC05OTk5L3dvcmsvc3BsLTk5OTkvY29uZmlndXJlIiAiL3Zhci90bXAv cG9ydGFnZS9zeXMta2VybmVsL3NwbC05OTk5L3dvcmsvc3BsLTk5OTkvY29uZmlnLmxvZyIgIi9l dGMvY3Jvbi5kYWlseSIgIi9ldGMvbG9ncm90YXRlLmQvIiAiL3Zhci9saWIvbXBkLyIgIi9ldGMv bG9ncm90YXRlLmQvbXBkIiAiL3Vzci9sb2NhbC9mcmVlc3dpdGNoL2xvZy9jZHItY3N2L0ZVTExf TWFzdGVyLmNzdiIgIi9ldGMvcG9ydGFnZS9wYWNrYWdlLnVzZSIgIi9ldGMvcG9ydGFnZS9wYWNr YWdlLm1hc2siICIvdmFyL2xvZy9ya2h1bnRlci5sb2ciICIvZXRjL21ha2UuY29uZiIgIi9ldGMv cG9ydGFnZS9wYWNrYWdlLnVzZSIgIi9ldGMvcG9ydGFnZS9wYWNrYWdlLm1hc2siICJ+Ly5teWtl cm1yYyIgIi92YXIvbG9nL2dldGJmZy5sb2ciICIvdXNyL2Jpbi9iYWNrdXBfdG9fYXp1cmVfYmF0 Y2guc2giICIvdXNyL2Jpbi9iYWNrdXBfdG9fYXp1cmUuc2giICIvZXRjL2FwYWNoZTIvbW9kdWxl cy5kLzAwX2FwYWNoZV9tYW51YWwuY29uZiIgIi92YXIvbG9nL21lc3NhZ2VzIiAiL3Zhci9sb2cv bWVzc2FnZXMuMSIgIi92YXIvbG9nL21lc3NhZ2VzIiAiL2V0Yy9ya2h1bnRlci5jb25mIiAiL3Vz ci9saWIvcmtodW50ZXIvc2NyaXB0cy8iICIvZXRjL3JraHVudGVyLmNvbmYiICIvdXNyL2Jpbi9s ZGQiICIvZXRjL2Nyb24uZGFpbHkvcmtodW50ZXIiICIvdmFyL2xvZy9ya2h1bnRlci5sb2ciICIv ZXRjL2Nyb24uZGFpbHkvcmtodW50ZXIiICIvZXRjL3BvcnRhZ2UvcGFja2FnZS51c2UiICJ+Ly5t eWtlcm1yYyIgIi92YXIvbG9nL21lc3NhZ2VzIiAiL3Vzci9iaW4vYmFja3VwX3RvX2F6dXJlX2Jh dGNoLnNoIiAiL2V0Yy9mcmVlc3dpdGNoL2NvbmYvc2lwX3Byb2ZpbGVzL2V4dGVybmFsL2Vpci54 bWwiICIvdXNyL3NyYy93b3JsZF91cGRhdGUudHh0IiAiL3Vzci9zcmMvdGVtcC50eHQiICIvbW50 L21pc2MiICIvdmFyL2xvZy9wb3J0YWdlL2FwcC10ZXh0Om11cGRmLTEuOWE6MjAxNjEwMzAtMjAx NzU0LmxvZyIgIi92YXIvbG9nL2FwYWNoZTIvc3NsX3JlcXVlc3RfbG9nIiAiL3Zhci9sb2cvYXBh Y2hlMi9zc2xfcmVxdWVzdF9sb2cuMiIgIi92YXIvbG9nL2FwYWNoZTIvc3NsX3JlcXVlc3RfbG9n LjEiICIvdmFyL2xvZy9hcGFjaGUyL3NzbF9yZXF1ZXN0X2xvZyIgIi91c3Ivc3JjLyIgIi91c3Iv c3JjL3dvcmxkX3VwZGF0ZS50eHQiICIvdmFyL2xvZy9lbWVyZ2UubG9nIiAiL3Vzci9zcmMvd29y bGRfdXBkYXRlLnR4dCIgIi9ldGMvcG9ydGFnZS9wYWNrYWdlLnVubWFzayIgIi91c3IvcG9ydGFn ZS9wcm9maWxlcy9wYWNrYWdlLm1hc2siICIvdG1wL3Ztd2FyZS1jb3ZpY2kvIiAiL2V0Yy9lbnYu ZC85MHZtd2FyZSIgIn4vIiAiL3Vzci9iaW4vYmFja3VwX3RvX2F6dXJlX2JhdGNoLnNoIiAiL3Zh ci9sb2cvZ2V0YmZnLmxvZyIgIi92YXIvbG9nL2FwYWNoZTIvc3NsX3JlcXVlc3RfbG9nIiAiL3Vz ci9zcmMvdGVtcC50eHQiKSkKCjs7IEJ1ZmZlciBzZWN0aW9uIC0tIGJ1ZmZlcnMgbGlzdGVkIGlu IHNhbWUgb3JkZXIgYXMgaW4gYnVmZmVyIGxpc3Q6CihkZXNrdG9wLWNyZWF0ZS1idWZmZXIgMjA4 CiAgIi9ldGMvZnJlZXN3aXRjaC9jb25mL2RpYWxwbGFuL2RlZmF1bHQueG1sIgogICJkZWZhdWx0 LnhtbCIKICAnbnhtbC1tb2RlCiAgJyhhdXRvLWZpbGwtbW9kZSkKICAyMzg3MgogICcoMTc2NDQg bmlsKQogIG5pbAogIG5pbAogICcoKGJ1ZmZlci1maWxlLWNvZGluZy1zeXN0ZW0gLiB1dGYtOC11 bml4KSkKICAnKChtYXJrLXJpbmcgKDY0NjIgMjM5OTYgMjA4MTMgMjM4NzEgMjM3OTUgMjM5Mzgg MjE0MTIgMjM3OTUgMjQ1MjkgMjU2MzcpKSkpCgooZGVza3RvcC1jcmVhdGUtYnVmZmVyIDIwOAog ICIvdXNyL2xvY2FsL3BvcnRhZ2UvYXBwLWFjY2Vzc2liaWxpdHkvYnJsdHR5L2JybHR0eS05OTk5 LmVidWlsZCIKICAiYnJsdHR5LTk5OTkuZWJ1aWxkIgogICd0ZXh0LW1vZGUKICAnKGF1dG8tZmls bC1tb2RlKQogIDQzMjUKICAnKDQwNDIgbmlsKQogIG5pbAogIG5pbAogICcoKGJ1ZmZlci1maWxl LWNvZGluZy1zeXN0ZW0gLiB1bmRlY2lkZWQtdW5peCkpCiAgJygobWFyay1yaW5nICg0MzM0KSkp KQoK --Multipart_Sat_Dec_10_10:02:11_2016-1 Content-Type: text/plain; charset=US-ASCII -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com --Multipart_Sat_Dec_10_10:02:11_2016-1-- From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 10 10:49:46 2016 Received: (at 24298) by debbugs.gnu.org; 10 Dec 2016 15:49:46 +0000 Received: from localhost ([127.0.0.1]:37121 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFjuD-0008Ns-VV for submit@debbugs.gnu.org; Sat, 10 Dec 2016 10:49:46 -0500 Received: from eggs.gnu.org ([208.118.235.92]:45901) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFjuC-0008Ne-9n for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 10:49:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cFju3-0004ob-Ek for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 10:49:38 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:33482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFju3-0004oR-BA; Sat, 10 Dec 2016 10:49:35 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1503 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cFju2-0001bb-Dr; Sat, 10 Dec 2016 10:49:34 -0500 Date: Sat, 10 Dec 2016 17:50:05 +0200 Message-Id: <83mvg3g4wi.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sat, 10 Dec 2016 10:02:11 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -8.0 (--------) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.0 (--------) > Date: Sat, 10 Dec 2016 10:02:11 -0500 > From: John Covici > Cc: 24298@debbugs.gnu.org > > I can reproduce this with a desktop with just two buffers, what > happens is when the commit is there, the wrong buffer is the current > one and if I do c-x-b it has the scratch buffer as the next one > rather than the previous buffer. For instance in the desktop I will > send you, the current buffer is the Makefile, but when I restore the > desktop, default.xml is made the current buffer instead and the > scratch buffer is the default for c-x-b. The desktop file you sent doesn't have Makefile, it has default.xml and brltty-9999.ebuild. The buffer that's expected to be the current one after restoring is the first one in the list, and in your case it's default.xml. So if that buffer becomes the current after restoring desktop, I don't see a problem in the restore stage, and don't understand how that commit could have changed this. What do you see in the list returned by buffer-list, before you end a session? The buffers are recorded in the desktop file in the order they appear in that list, and in my case, this is the current buffer when I invoke desktop-save. From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 10 11:02:55 2016 Received: (at 24298) by debbugs.gnu.org; 10 Dec 2016 16:02:55 +0000 Received: from localhost ([127.0.0.1]:37125 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFk6x-0000HK-8E for submit@debbugs.gnu.org; Sat, 10 Dec 2016 11:02:55 -0500 Received: from mail0205.smtp25.com ([174.37.170.205]:42375) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFk6u-0000HA-BR for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 11:02:53 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uBAG2nHC031710 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sat, 10 Dec 2016 11:02:49 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uBAG2loQ031708; Sat, 10 Dec 2016 11:02:47 -0500 Date: Sat, 10 Dec 2016 11:02:47 -0500 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: <83mvg3g4wi.fsf@gnu.org> References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-Filter: s-out-001.smtp25.com-uBAG2neg003942 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Sat, 10 Dec 2016 10:50:05 -0500, Eli Zaretskii wrote: > > > Date: Sat, 10 Dec 2016 10:02:11 -0500 > > From: John Covici > > Cc: 24298@debbugs.gnu.org > > > > I can reproduce this with a desktop with just two buffers, what > > happens is when the commit is there, the wrong buffer is the current > > one and if I do c-x-b it has the scratch buffer as the next one > > rather than the previous buffer. For instance in the desktop I will > > send you, the current buffer is the Makefile, but when I restore the > > desktop, default.xml is made the current buffer instead and the > > scratch buffer is the default for c-x-b. > > The desktop file you sent doesn't have Makefile, it has default.xml > and brltty-9999.ebuild. The buffer that's expected to be the current > one after restoring is the first one in the list, and in your case > it's default.xml. So if that buffer becomes the current after > restoring desktop, I don't see a problem in the restore stage, and > don't understand how that commit could have changed this. > > What do you see in the list returned by buffer-list, before you end a > session? The buffers are recorded in the desktop file in the order > they appear in that list, and in my case, this is the current buffer > when I invoke desktop-save. I am sorry, it wasn't a makefile, you are correct. OK, let me try again. Before the restore commit, when I enter emacs, the current buffer is brltty-9999.ebuild but after the commit the current buffer is the default.xml. Before the restore commit, if I do c-x-b the default buffer it wants to switch to is default.xml. After the restore commit, when the current buffer is default.xml when it should be brltty-9999.ebuild the default buffer to switch to is the scratch buffer. In a desktop with many buffers, after the restore commit, it seems to pick a random buffer to be the current buffer rather than the one it should be. I hope this is clear now. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 10 12:47:26 2016 Received: (at 24298) by debbugs.gnu.org; 10 Dec 2016 17:47:26 +0000 Received: from localhost ([127.0.0.1]:37194 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFlk5-0004i3-UG for submit@debbugs.gnu.org; Sat, 10 Dec 2016 12:47:26 -0500 Received: from eggs.gnu.org ([208.118.235.92]:34086) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFlk4-0004ho-11 for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 12:47:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cFlju-00013t-BS for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 12:47:18 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:34499) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFlju-00013n-8f; Sat, 10 Dec 2016 12:47:14 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1692 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cFljr-0007KP-G2; Sat, 10 Dec 2016 12:47:14 -0500 Date: Sat, 10 Dec 2016 19:47:24 +0200 Message-Id: <83h96bfzgz.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sat, 10 Dec 2016 11:02:47 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -8.0 (--------) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.0 (--------) > Date: Sat, 10 Dec 2016 11:02:47 -0500 > From: John Covici > Cc: 24298@debbugs.gnu.org > > > The desktop file you sent doesn't have Makefile, it has default.xml > > and brltty-9999.ebuild. The buffer that's expected to be the current > > one after restoring is the first one in the list, and in your case > > it's default.xml. So if that buffer becomes the current after > > restoring desktop, I don't see a problem in the restore stage, and > > don't understand how that commit could have changed this. > > > > What do you see in the list returned by buffer-list, before you end a > > session? The buffers are recorded in the desktop file in the order > > they appear in that list, and in my case, this is the current buffer > > when I invoke desktop-save. > > I am sorry, it wasn't a makefile, you are correct. OK, let me try > again. Before the restore commit, when I enter emacs, the current > buffer is brltty-9999.ebuild but after the commit the current buffer > is the default.xml. Before the restore commit, if I do c-x-b the > default buffer it wants to switch to is default.xml. After the > restore commit, when the current buffer is default.xml when it should > be brltty-9999.ebuild the default buffer to switch to is the scratch > buffer. In a desktop with many buffers, after the restore commit, it > seems to pick a random buffer to be the current buffer rather than the > one it should be. > > I hope this is clear now. It is, thanks. But please also answer my question above about the order of buffers in the list returned by buffer-list, before you quite Emacs which writes the desktop file. From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 10 13:46:23 2016 Received: (at 24298) by debbugs.gnu.org; 10 Dec 2016 18:46:23 +0000 Received: from localhost ([127.0.0.1]:37228 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFmf8-0006EN-PO for submit@debbugs.gnu.org; Sat, 10 Dec 2016 13:46:23 -0500 Received: from mail0205.smtp25.com ([174.37.170.205]:33494) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cFmf6-0006EE-If for 24298@debbugs.gnu.org; Sat, 10 Dec 2016 13:46:21 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uBAIkGKg001442 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sat, 10 Dec 2016 13:46:16 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uBAIkF5X001437; Sat, 10 Dec 2016 13:46:15 -0500 Date: Sat, 10 Dec 2016 13:46:15 -0500 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: <83h96bfzgz.fsf@gnu.org> References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> <83h96bfzgz.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-Filter: s-out-001.smtp25.com-uBAIkGNb015000 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Sat, 10 Dec 2016 12:47:24 -0500, Eli Zaretskii wrote: > > > Date: Sat, 10 Dec 2016 11:02:47 -0500 > > From: John Covici > > Cc: 24298@debbugs.gnu.org > > > > > The desktop file you sent doesn't have Makefile, it has default.xml > > > and brltty-9999.ebuild. The buffer that's expected to be the current > > > one after restoring is the first one in the list, and in your case > > > it's default.xml. So if that buffer becomes the current after > > > restoring desktop, I don't see a problem in the restore stage, and > > > don't understand how that commit could have changed this. > > > > > > What do you see in the list returned by buffer-list, before you end a > > > session? The buffers are recorded in the desktop file in the order > > > they appear in that list, and in my case, this is the current buffer > > > when I invoke desktop-save. > > > > I am sorry, it wasn't a makefile, you are correct. OK, let me try > > again. Before the restore commit, when I enter emacs, the current > > buffer is brltty-9999.ebuild but after the commit the current buffer > > is the default.xml. Before the restore commit, if I do c-x-b the > > default buffer it wants to switch to is default.xml. After the > > restore commit, when the current buffer is default.xml when it should > > be brltty-9999.ebuild the default buffer to switch to is the scratch > > buffer. In a desktop with many buffers, after the restore commit, it > > seems to pick a random buffer to be the current buffer rather than the > > one it should be. > > > > I hope this is clear now. > > It is, thanks. But please also answer my question above about the > order of buffers in the list returned by buffer-list, before you quite > Emacs which writes the desktop file. Here is what I have before the restore commit. CRM Buffer Size Mode File . brltty-9999.ebuild 4916 Text /usr/local/portage/app-accessibility/brltty/brltty-9999.ebuild default.xml 48920 nXML Invalid /etc/freeswitch/conf/dialplan/default.xml %* *Completions* 275 Completion List *scratch* 145 Lisp Interaction %* *Messages* 578 Messages And here is what I get after the commit CRM Buffer Size Mode File *scratch* 145 Lisp Interaction %* *Messages* 206 Messages brltty-9999.ebuild 4916 Text /usr/local/portage/app-accessibility/brltty/brltty-9999.ebuild . default.xml 48920 nXML Invalid /etc/freeswitch/conf/dialplan/default.xml and if I quit emacs and use emacs before the commit, I get the first one. Hope this helps. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 17 08:12:47 2016 Received: (at 24298) by debbugs.gnu.org; 17 Dec 2016 13:12:47 +0000 Received: from localhost ([127.0.0.1]:44818 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIEn8-0004YA-Oz for submit@debbugs.gnu.org; Sat, 17 Dec 2016 08:12:47 -0500 Received: from eggs.gnu.org ([208.118.235.92]:59673) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIEn7-0004Xz-V9 for 24298@debbugs.gnu.org; Sat, 17 Dec 2016 08:12:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cIEmz-0007RG-Jt for 24298@debbugs.gnu.org; Sat, 17 Dec 2016 08:12:40 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:45935) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cIEmz-0007RC-Gi; Sat, 17 Dec 2016 08:12:37 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:3652 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cIEmy-0002PU-OL; Sat, 17 Dec 2016 08:12:37 -0500 Date: Sat, 17 Dec 2016 15:11:59 +0200 Message-Id: <83fulm7l9c.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sat, 10 Dec 2016 13:46:15 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> <83h96bfzgz.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -8.1 (--------) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.1 (--------) > Date: Sat, 10 Dec 2016 13:46:15 -0500 > From: John Covici > Cc: 24298@debbugs.gnu.org > > > > I am sorry, it wasn't a makefile, you are correct. OK, let me try > > > again. Before the restore commit, when I enter emacs, the current > > > buffer is brltty-9999.ebuild but after the commit the current buffer > > > is the default.xml. Before the restore commit, if I do c-x-b the > > > default buffer it wants to switch to is default.xml. After the > > > restore commit, when the current buffer is default.xml when it should > > > be brltty-9999.ebuild the default buffer to switch to is the scratch > > > buffer. In a desktop with many buffers, after the restore commit, it > > > seems to pick a random buffer to be the current buffer rather than the > > > one it should be. > > > > > > I hope this is clear now. > > > > It is, thanks. But please also answer my question above about the > > order of buffers in the list returned by buffer-list, before you quite > > Emacs which writes the desktop file. > > Here is what I have before the restore commit. > > CRM Buffer Size Mode File > . brltty-9999.ebuild 4916 Text > /usr/local/portage/app-accessibility/brltty/brltty-9999.ebuild > default.xml 48920 nXML Invalid > /etc/freeswitch/conf/dialplan/default.xml > %* *Completions* 275 Completion List > *scratch* 145 Lisp Interaction > %* *Messages* 578 Messages > > And here is what I get after the commit > CRM Buffer Size Mode File > *scratch* 145 Lisp Interaction > %* *Messages* 206 Messages > brltty-9999.ebuild 4916 Text > /usr/local/portage/app-accessibility/brltty/brltty-9999.ebuild > . default.xml 48920 nXML Invalid > /etc/freeswitch/conf/dialplan/default.xml > > and if I quit emacs and use emacs before the commit, I get the first > one. > > Hope this helps. Thanks, can you try the patch below and see if it solves this problem? diff --git a/lisp/desktop.el b/lisp/desktop.el index 1f460b7..e83891b 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -1157,13 +1157,13 @@ desktop-lazy-timer ;; ---------------------------------------------------------------------------- (defun desktop-restoring-frameset-p () "True if calling `desktop-restore-frameset' will actually restore it." - (and desktop-restore-frames desktop-saved-frameset t)) + (and desktop-restore-frames desktop-saved-frameset (display-graphic-p) t)) (defun desktop-restore-frameset () "Restore the state of a set of frames. This function depends on the value of `desktop-saved-frameset' being set (usually, by reading it from the desktop)." - (when (and (display-graphic-p) (desktop-restoring-frameset-p)) + (when (desktop-restoring-frameset-p) (frameset-restore desktop-saved-frameset :reuse-frames (eq desktop-restore-reuses-frames t) :cleanup-frames (not (eq desktop-restore-reuses-frames 'keep)) From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 17 09:05:05 2016 Received: (at 24298) by debbugs.gnu.org; 17 Dec 2016 14:05:05 +0000 Received: from localhost ([127.0.0.1]:44828 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIFbl-0005mE-BY for submit@debbugs.gnu.org; Sat, 17 Dec 2016 09:05:05 -0500 Received: from mail0157.smtp25.com ([75.126.84.157]:49396) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIFbi-0005lw-Vo for 24298@debbugs.gnu.org; Sat, 17 Dec 2016 09:05:03 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uBHE50jB029629 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sat, 17 Dec 2016 09:05:00 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uBHE50oD029627; Sat, 17 Dec 2016 09:05:00 -0500 Date: Sat, 17 Dec 2016 09:05:00 -0500 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: <83fulm7l9c.fsf@gnu.org> References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> <83h96bfzgz.fsf@gnu.org> <83fulm7l9c.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-Filter: d-out-001.smtp25.com-uBHE51B9015729 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Preliminary testing indicates its good, I will try with latest master and see what happens. Thanks. On Sat, 17 Dec 2016 08:11:59 -0500, Eli Zaretskii wrote: > > diff --git a/lisp/desktop.el b/lisp/desktop.el > index 1f460b7..e83891b 100644 > --- a/lisp/desktop.el > +++ b/lisp/desktop.el > @@ -1157,13 +1157,13 @@ desktop-lazy-timer > ;; ---------------------------------------------------------------------------- > (defun desktop-restoring-frameset-p () > "True if calling `desktop-restore-frameset' will actually restore it." > - (and desktop-restore-frames desktop-saved-frameset t)) > + (and desktop-restore-frames desktop-saved-frameset (display-graphic-p) t)) > > (defun desktop-restore-frameset () > "Restore the state of a set of frames. > This function depends on the value of `desktop-saved-frameset' > being set (usually, by reading it from the desktop)." > - (when (and (display-graphic-p) (desktop-restoring-frameset-p)) > + (when (desktop-restoring-frameset-p) > (frameset-restore desktop-saved-frameset > :reuse-frames (eq desktop-restore-reuses-frames t) > :cleanup-frames (not (eq desktop-restore-reuses-frames 'keep)) -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 17 09:47:32 2016 Received: (at 24298) by debbugs.gnu.org; 17 Dec 2016 14:47:32 +0000 Received: from localhost ([127.0.0.1]:44845 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIGGp-0006jl-RU for submit@debbugs.gnu.org; Sat, 17 Dec 2016 09:47:32 -0500 Received: from eggs.gnu.org ([208.118.235.92]:48749) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIGGo-0006jW-5k for 24298@debbugs.gnu.org; Sat, 17 Dec 2016 09:47:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cIGGg-0001Wc-13 for 24298@debbugs.gnu.org; Sat, 17 Dec 2016 09:47:25 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:47147) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cIGGf-0001WX-Tt; Sat, 17 Dec 2016 09:47:21 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:3716 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cIGGf-0008JV-5o; Sat, 17 Dec 2016 09:47:21 -0500 Date: Sat, 17 Dec 2016 16:46:44 +0200 Message-Id: <83a8bu7gvf.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sat, 17 Dec 2016 09:05:00 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> <83h96bfzgz.fsf@gnu.org> <83fulm7l9c.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -8.1 (--------) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.1 (--------) > Date: Sat, 17 Dec 2016 09:05:00 -0500 > From: John Covici > Cc: 24298@debbugs.gnu.org > > Preliminary testing indicates its good, I will try with latest master > and see what happens. I'd prefer that you test with the latest emacs-25 branch, if you can, because I would like to fix this in Emacs 25.2, not 26.1. Thanks in advance. From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 17 11:41:24 2016 Received: (at 24298) by debbugs.gnu.org; 17 Dec 2016 16:41:24 +0000 Received: from localhost ([127.0.0.1]:45111 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cII31-0000wi-RD for submit@debbugs.gnu.org; Sat, 17 Dec 2016 11:41:24 -0500 Received: from mail0157.smtp25.com ([75.126.84.157]:57720) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cII2y-0000wX-QW for 24298@debbugs.gnu.org; Sat, 17 Dec 2016 11:41:21 -0500 Received: from ccs.covici.com (localhost [127.0.0.1]) by ccs.covici.com (8.14.9/8.14.8) with ESMTP id uBHGfEWv026873 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sat, 17 Dec 2016 11:41:14 -0500 Received: (from covici@localhost) by ccs.covici.com (8.14.9/8.13.7/Submit) id uBHGfD9b026754; Sat, 17 Dec 2016 11:41:13 -0500 Date: Sat, 17 Dec 2016 11:41:13 -0500 Message-ID: From: John Covici To: Eli Zaretskii Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) In-Reply-To: <83a8bu7gvf.fsf@gnu.org> References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> <83h96bfzgz.fsf@gnu.org> <83fulm7l9c.fsf@gnu.org> <83a8bu7gvf.fsf@gnu.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL/10.8 EasyPG/1.0.0 Emacs/25.1.50 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Organization: Covici Computer Systems MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-SpamH-Filter: d-out-001.smtp25.com-uBHGfEUs022485 X-SpamH-OriginatingIP: 70.109.53.110 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 24298 Cc: 24298@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: covici@ccs.covici.com Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) OK, looks good with that branch as well. On Sat, 17 Dec 2016 09:46:44 -0500, Eli Zaretskii wrote: > > > Date: Sat, 17 Dec 2016 09:05:00 -0500 > > From: John Covici > > Cc: 24298@debbugs.gnu.org > > > > Preliminary testing indicates its good, I will try with latest master > > and see what happens. > > I'd prefer that you test with the latest emacs-25 branch, if you can, > because I would like to fix this in Emacs 25.2, not 26.1. > > Thanks in advance. -- Your life is like a penny. You're going to lose it. The question is: How do you spend it? John Covici covici@ccs.covici.com From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 17 12:08:12 2016 Received: (at 24298-done) by debbugs.gnu.org; 17 Dec 2016 17:08:12 +0000 Received: from localhost ([127.0.0.1]:45119 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIISy-0001Zk-7P for submit@debbugs.gnu.org; Sat, 17 Dec 2016 12:08:12 -0500 Received: from eggs.gnu.org ([208.118.235.92]:52311) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cIISx-0001ZY-7V for 24298-done@debbugs.gnu.org; Sat, 17 Dec 2016 12:08:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cIISo-0002Nw-4c for 24298-done@debbugs.gnu.org; Sat, 17 Dec 2016 12:08:06 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:48806) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cIISo-0002Nm-1A; Sat, 17 Dec 2016 12:08:02 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4016 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cIISm-0000vg-MY; Sat, 17 Dec 2016 12:08:01 -0500 Date: Sat, 17 Dec 2016 19:07:17 +0200 Message-Id: <8360mi7ad6.fsf@gnu.org> From: Eli Zaretskii To: covici@ccs.covici.com In-reply-to: (message from John Covici on Sat, 17 Dec 2016 11:41:13 -0500) Subject: Re: bug#24298: Acknowledgement (25.1; problem with restoring desktop) References: <83oa0rlnmw.fsf@gnu.org> <83pokzg944.fsf@gnu.org> <83mvg3g4wi.fsf@gnu.org> <83h96bfzgz.fsf@gnu.org> <83fulm7l9c.fsf@gnu.org> <83a8bu7gvf.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -8.1 (--------) X-Debbugs-Envelope-To: 24298-done Cc: 24298-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.1 (--------) > Date: Sat, 17 Dec 2016 11:41:13 -0500 > From: John Covici > Cc: 24298@debbugs.gnu.org > > OK, looks good with that branch as well. Thanks, I installed the patch for the upcoming Emacs 25.2, and I'm marking this bug done. Thank you for your patience while this bug was being analyzed. From unknown Tue Jun 17 22:20:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 15 Jan 2017 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator