Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 679215 Details for
Bug 890565
[abrt] xemacs-21.5.31-4.fc17: really_abort: Process /usr/bin/xemacs-21.5-b31 was killed by signal 6 (SIGABRT)
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
init file for XEmacs
init.el (text/x-emacs-lisp), 5.50 KB, created by
William D. McCoy
on 2013-01-16 01:24:46 UTC
(
hide
)
Description:
init file for XEmacs
Filename:
MIME Type:
Creator:
William D. McCoy
Created:
2013-01-16 01:24:46 UTC
Size:
5.50 KB
patch
obsolete
>;; .emacs > >;;; uncomment this line to disable loading of "default.el" at startup >;; (setq inhibit-default-init t) > >;; turn on font-lock mode >(when (fboundp 'global-font-lock-mode) > (global-font-lock-mode t)) > >;; enable visual feedback on selections >;(setq transient-mark-mode t) > >;; default to better frame titles >;(setq frame-title-format >; (concat "%b - emacs@" system-name)) > >;; default to unified diffs >(setq diff-switches "-u") > >(setq options-save-faces t) > >(setq efs-generate-anonymous-password "wdmccoy@geo.umass.edu") > >;;; For ESS: > >;;(load "/usr/local/lib/xemacs/site-lisp/ess-5.1.19/lisp/ess-site") > >;; Using xemacs package manager, so site file are in new directory >;;(load "/usr/share/xemacs/xemacs-packages/lisp/ess/ess-site") > >(require 'ess-site) > >;; (autoload âess-rdired "ess-rdired" >;; "View *R* objects in a dired-like buffer." t) > >(require 'ess-rutils) > >;;(setq S-plus t) >(setq ess-source-directory (lambda () (concat ess-directory "src/"))) >(setq ess-dump-filename-template-proto "%s.S") > >;;;For Sweave in ESS >(defun Rnw-mode () > (require 'ess-noweb) > (noweb-mode) > (setq ess-pdf-viewer-pref "okular") >;; (setq ess-swv-pdflatex-commands ("pdflatex" "texi2pdf" "make")) > (if (fboundp 'R-mode) > (setq noweb-default-code-mode 'R-mode))) >(add-to-list 'auto-mode-alist '("\\.Rnw\\'" . Rnw-mode)) >(add-to-list 'auto-mode-alist '("\\.Snw\\'" . Rnw-mode)) > >;;; For Tramp: > >;; (add-to-list 'load-path "/usr/local/lib/xemacs/site-lisp/tramp/lisp/") >(require 'tramp) >(setq tramp-default-method "scp") > >;;; For Auctex > >(require 'tex-site) > >;; these next few expressions are from the RefTex info pages > >(add-hook 'LaTeX-mode-hook 'turn-on-reftex) >(setq reftex-enable-partial-scans t) >(setq reftex-save-parse-info t) >(setq reftex-use-multiple-selection-buffers t) >(setq reftex-plug-into-AUCTeX t) > >(setq reftex-file-extensions > '(("Snw" "Rnw" "nw" "tex" ".tex" ".ltx") ("bib" ".bib"))) >(setq TeX-file-extensions > '("Snw" "Rnw" "nw" "tex" "sty" "cls" "ltx" "texi" "texinfo")) > >;; For Sweave and AUCTeX integration >;; from Mathieu Beaulieu?: http://permalink.gmane.org/gmane.emacs.ess.general/5716 > >; (add-hook 'Rnw-mode-hook >; (lambda () >; (add-to-list 'TeX-command-list >; '("Sweave" "R CMD Sweave %s" >; TeX-run-command nil (latex-mode) :help "Run Sweave") t) >; (add-to-list 'TeX-command-list >; '("LatexSweave" "%l %(mode) %s" >; TeX-run-TeX nil (latex-mode) :help "Run Latex after Sweave") t) >; (add-to-list 'TeX-command-list >; '("RubberSweave" "rubber -d %s && xpdf '%s.pdf'" TeX-run-command nil t) t) >; (setq TeX-command-default "Sweave"))) > > >(setq calendar-latitude 42.3) >(setq calendar-longitude -72.5) > >(set-face-background 'default "white") >(display-time) > >;; For text-mode (including records-mode) >(add-hook 'text-mode-hook > (function > (lambda () > (auto-fill-mode 1) > ))) > >;; For python-mode >;; (from launchpad.net) >;; replaces python.el that comes with emacs > >; (add-to-list 'load-path "/home/wdmccoy/xemacsLisp/python-mode/python-mode.el-6.0.6/") >; (setq py-install-directory "/home/wdmccoy/xemacsLisp/python-mode/python-mode.el-6.0.6/") >; (require 'python-mode) > >; (setq py-shell-name "/usr/bin/ipython") > > >;; For ipython >;; See: http://emacswiki.org/emacs/PythonProgrammingInEmacs#toc11 >;; for the best help with ipython setup in emacs > >(add-to-list 'load-path "/usr/local/lib/xemacs/site-lisp/ipython/") >;; (setq py-default-interpreter "ipython") >;; (setq ipython-command "/usr/bin/ipython") >(require 'ipython) >(require 'python-mode) >(setq py-python-command-args '( "--colors" "Linux")) > >;;; For records mode >(load "~/.emacs-records") >; Define key bindings for functions called from outside records mode > >; The preferred binding for records-goto-today - uncomment to use it >(define-key global-map [?\C-c ?n] 'records-goto-today) >(define-key global-map [?\C-c ?-] 'records-underline-line) > >; The Ctrl-x n map >(define-key global-map [?\C-x ?n ?t] 'records-goto-today) >(define-key global-map [?\C-x ?n ?r] 'records-insert-record-region) >(define-key global-map [?\C-x ?n ?b] 'records-insert-record-buffer) >(define-key global-map [?\C-x ?n ?l] 'records-insert-link) > >; Hook up to the calendar mode >(add-hook 'calendar-load-hook > (function > (lambda () > (define-key calendar-mode-map "n" 'records-calendar-to-record)))) > >; Hook up to the latex mode >(add-hook 'LaTeX-mode-hook > (function > (lambda () > (define-key LaTeX-mode-map "\C-clw" 'records-widen-latex)))) > >; Hook to insert a template when a record is inserted. >; See function records-insert-template >(add-hook 'records-make-record-hook > (function (lambda () > (records-insert-template current-prefix-arg)))) >;;;*** OPTIONAL ***;;; > >; If you like abbrev mode >(add-hook 'records-mode-hooks > (function > (lambda () > (abbrev-mode 1)))) > >; If you like to use auto filling and/or filladapt modes while editing text. >; If you have these functions in the text-mode-hook, then you don't need >; them here. >; (add-hook 'records-mode-hooks >; (function >; (lambda () >; (turn-on-auto-fill) >; (turn-on-filladapt-mode) >; ))) > >; If you want to always start up in outline mode >; (add-hook 'records-mode-hooks 'records-outline-mode) > >; Using imenu: imenu will invoke a popup menu of records subjects >; 1. In Xemacs: >; (define-key global-map [(shift button3)] 'imenu) >; 2. In gnu emacs: >; (define-key global-map [(shift mouse-3)] 'imenu) > >; If you want to be brought to today's record on startup >(records-goto-today) > >;;;; records-mode end
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 890565
:
669676
|
669677
|
669678
|
669679
|
669680
|
669681
|
669682
|
669683
|
669684
|
669685
|
669686
|
669687
| 679215