Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 679705 Details for
Bug 896122
xemacs does not support ":visible" and thus emacs-ess causes error
[?]
New
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.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
attached is my xemacs init.el file
init.el (text/x-emacs-lisp), 3.81 KB, created by
William D. McCoy
on 2013-01-16 16:42:47 UTC
(
hide
)
Description:
attached is my xemacs init.el file
Filename:
MIME Type:
Creator:
William D. McCoy
Created:
2013-01-16 16:42:47 UTC
Size:
3.81 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) > >;;(setq S-plus t) >(setq ess-source-directory (lambda () (concat ess-directory "src/"))) >(setq ess-dump-filename-template-proto "%s.S") > >;;; 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) > >;;;For Sweave in ESS >(defun Rnw-mode () > (require 'ess-noweb) > (noweb-mode) > (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)) > >(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")) > >(setq calendar-latitude 42.3) >(setq calendar-longitude -72.5) > >(display-time) > >;;; 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 896122
: 679705