On Sunday 29 May 2005 09:32, Stefan Monnier wrote:
> > This is the output from gdb:
> > as "i586-suse-linux"...Using host libthread_db library
> > "/lib/tls/libthread_db.so.1". (gdb) run
>
> Have you tried with -q --no-site-file?
>
>
>         Stefan

Sorry about not following up on this.  I tried to find out where the message 
went, so that I could add my new observations.  It seems that cedet's ede is 
the source of the problem.  When I removed it from my .gnu-emacs, Emacs 
stopped crashing.  I believe the problem is related to the fact that the file 
is under svn version control.  This is because I was able to visit it 
successfully after moving it out of the repository image.  

I filed a bug report with the ede developers.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;This is .emacs
(if (string-match "XEmacs\\|Lucid" emacs-version)
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;; XEmacs
  ;;; ------
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  (progn
     (if (file-readable-p "~/.xemacs/init.el")
        (load "~/.xemacs/init.el" nil t))
  )
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;;; GNU-Emacs
  ;;; ---------
  ;;; load ~/.gnu-emacs or, if not exists /etc/skel/.gnu-emacs
  ;;; For a description and the settings see /etc/skel/.gnu-emacs
  ;;;   ... for your private ~/.gnu-emacs your are on your one.
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  (if (file-readable-p "~/.gnu-emacs")
      (load "~/.gnu-emacs" nil t)
    (if (file-readable-p "/etc/skel/.gnu-emacs")
        (load "/etc/skel/.gnu-emacs" nil t)))

  ;; Custum Settings
  ;; ===============
  ;; To avoid any trouble with the customization system of GNU emacs
  ;; we set the default file ~/.gnu-emacs-custom
  (setq custom-file "~/.gnu-emacs-custom")
  (load "~/.gnu-emacs-custom" t t)
;;;
)
;;;


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;This is the .gnu-emacs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; http://emacs-session.sourceforge.net/
(setq load-path
      (cons (expand-file-name "~/.emacs.d/lisp")
            load-path))

(require 'session)
(add-hook 'after-init-hook 'session-initialize)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; from eldoc.el
(add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
(add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
(add-hook 'ielm-mode-hook 'turn-on-eldoc-mode)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; cedet:
;; http://cedet.sourceforge.net

(setq semantic-load-turn-everything-on t)
(load-file "~/.emacs.d/lisp/cedet/common/cedet.el")
(autoload 'speedbar-frame-mode "speedbar" "Popup a speedbar frame" t)
(autoload 'speedbar-get-focus "speedbar" "Jump to speedbar frame" t)
(global-set-key [(f4)] 'speedbar-get-focus)
(semantic-load-enable-code-helpers)
(setq semanticdb-project-roots
         (list "/download/org/openscenegraph/"
               ))
(setq load-path
      (cons (expand-file-name "~/.emacs.d/lisp/ecb-snap")
            load-path))

(require 'ecb)

(require 'ede)
(global-ede-mode t) ;; commenting this out prevents the crash

;; Texinfo fancy chapter tags
;;(add-hook 'texinfo-mode-hook (lambda () (require 'sb-texinfo)))

;; HTML fancy chapter tags
;;(add-hook 'html-mode-hook (lambda () (require 'sb-html)))

;; w3 link listings
;;(autoload 'w3-speedbar-buttons "sb-w3" "s3 specific speedbar button 
generator.")

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; autoinsert.el
;;http://www.linuxgazette.com/issue39/marsden.html

(setq auto-mode-alist
      (append '(("\\.h$" . c++-mode)
                ("\\.cpp\\'" . c++-mode)
                ("\\.moc\\'" . c++-mode))
              auto-mode-alist))

(add-hook 'find-file-hooks 'auto-insert)
(setq-default auto-insert-query nil)

(server-start)

;;http://pivarski.watson.org/home/mathematica.el
(autoload 'mathematica-mode "mathematica.el" "Mathematica package file mode" 
t)
(setq auto-mode-alist(cons '("\\.m\\'" . mathematica-mode) auto-mode-alist))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This is my .gnu-emacs-custom
(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.
 '(backup-by-copying t)
 '(backup-directory-alist (quote ((".*" . "~/.emacs.d/backups"))))
 '(c-report-syntactic-errors t)
 '(column-number-mode t)
 '(cua-mode nil)
 '(frame-title-format "%f" t)
 '(global-font-lock-mode t nil (font-core))
 '(history-length 100)
 '(load-home-init-file t)
 '(pc-selection-mode t nil (pc-select))
 '(scroll-bar-mode (quote right))
 '(show-paren-mode t nil (paren))
 '(transient-mark-mode t)
 '(uniquify-buffer-name-style (quote forward) nil (uniquify)))
(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.
 '(default ((t (:stipple nil :background "#e3e3e3" :foreground 
"#000000" :inverse-video nil :box nil :strike-through nil :overline 
nil :underline nil :slant normal :weight bold :height 129 :width 
normal :family "adobe-courier")))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


I've also attached one of the problematic files, but as I say, I do not 
believe the file will cause the failure out of context.


-- 
Regards,
Steven
/****************************************************************************
** Form interface generated from reading ui file './astyleconfig.ui'
**
** Created: Sat May 28 19:20:13 2005
**      by: The User Interface Compiler ($Id: qt/main.cpp   3.3.4   edited Nov 24 2003 $)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/

#ifndef ASTYLECONFIG_H
#define ASTYLECONFIG_H

#include <qvariant.h>
#include <qwidget.h>

class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
class QSpacerItem;
class QTabWidget;
class QButtonGroup;
class QRadioButton;
class QGroupBox;
class QMultiLineEdit;
class QCheckBox;
class QSpinBox;
class QLabel;

class AStyleConfig : public QWidget
{
    Q_OBJECT

public:
    AStyleConfig( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
    ~AStyleConfig();

    QTabWidget* ConfigTabs;
    QWidget* tab;
    QButtonGroup* StyleGroup;
    QRadioButton* Style_ANSI;
    QRadioButton* Style_Linux;
    QRadioButton* Style_GNU;
    QRadioButton* Style_JAVA;
    QRadioButton* Style_UserDefined;
    QRadioButton* Style_KR;
    QGroupBox* GroupBox4;
    QMultiLineEdit* StyleExample;
    QWidget* tab_2;
    QGroupBox* GroupBox1;
    QCheckBox* Indent_Switches;
    QCheckBox* Indent_Cases;
    QCheckBox* Indent_Classes;
    QCheckBox* Indent_Brackets;
    QCheckBox* Indent_Namespaces;
    QCheckBox* Indent_Labels;
    QButtonGroup* ButtonGroup2;
    QRadioButton* Fill_Spaces;
    QSpinBox* Fill_SpaceCount;
    QRadioButton* Fill_Tabs;
    QGroupBox* GroupBox2;
    QSpinBox* Continue_MaxStatement;
    QLabel* TextLabel2;
    QLabel* TextLabel3;
    QSpinBox* Continue_MinConditional;
    QWidget* tab_3;
    QButtonGroup* ButtonGroup9;
    QRadioButton* Brackets_Break;
    QRadioButton* Brackets_Attach;
    QRadioButton* Brackets_Linux;
    QButtonGroup* ButtonGroup10;
    QCheckBox* Pad_Parentheses;
    QCheckBox* Pad_Operators;
    QGroupBox* GroupBox7;
    QCheckBox* Keep_Statements;
    QCheckBox* Keep_Blocks;

protected:
    QGridLayout* AStyleConfigLayout;
    QHBoxLayout* tabLayout;
    QGridLayout* StyleGroupLayout;
    QGridLayout* GroupBox4Layout;
    QGridLayout* tabLayout_2;
    QVBoxLayout* GroupBox1Layout;
    QGridLayout* ButtonGroup2Layout;
    QGridLayout* GroupBox2Layout;
    QVBoxLayout* tabLayout_3;
    QSpacerItem* Spacer3;
    QVBoxLayout* ButtonGroup9Layout;
    QVBoxLayout* ButtonGroup10Layout;
    QVBoxLayout* GroupBox7Layout;

protected slots:
    virtual void languageChange();

};

#endif // ASTYLECONFIG_H
_______________________________________________
Emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to