HI,

I installed the winter version of emacs and try to install the spanish 
dictionary as before but I could not, the same message appeared as before. It 
was OK before I installed the beta version. I tried to use the dictionary in 
english, did not work, and tried to enable flyspell, did not work, I got the 
message "Enabling Flyspell mode gave an error"

I do not know what happen. I will copy my emacs below, but as I said before, 
the winter version was working fine. 

I have a book pro, leopard 10.5.2

I will appreciate your help, Javier

----------------------------------------------------

;; .emacs

;;; uncomment this line to disable loading of "default.el" at startup
;; (setq inhibit-default-init t)
;;(load-file "/usr/local/cocoa-4.5/emacs/cocoa.emacs")

(require 'tex-site)

;; turn on font-lock mode
(global-font-lock-mode t)

;; enable visual feedback on selections
(setq transient-mark-mode t)
(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.
 '(case-fold-search t)
 '(current-language-environment "Spanish")
 '(default-input-method "spanish-postfix")
 '(global-font-lock-mode t nil (font-lock))
 '(show-paren-mode t nil (paren))
 '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
 '(transient-mark-mode t))
(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.
 )

;spell while writing
(add-hook 'TeX-mode-hook (lambda () (flyspell-mode 1)))


;; Load Enhanced Carbon Emacs plugin
;(unless (or (boundp 'enhanced-carbon-emacs)
;        (boundp 'aquamacs-version))
;  (defun load-local-site-start (site-lisp-directory)
;    "Load site-start.el from a given site-lisp directory"
;    (let ((current-default-directory default-directory))
;      (setq default-directory site-lisp-directory)
;      (normal-top-level-add-subdirs-to-load-path)
;      (setq default-directory current-default-directory)
;      (setq load-path (cons site-lisp-directory load-path))
;      (load (concat site-lisp-directory "/site-start.el"))
;      ))
;  (load-local-site-start 
;   "/Library/Application Support/Emacs/ec-emacs/site-lisp"))

;listado de ventanas y buffers en otras ventanas
(global-set-key "\C-x\C-b" 'electric-buffer-list)
;
; This is for PDFview to work with emacs.
(server-start)
;(defun raise-emacs-on-aqua()
;    (shell-command
;        "osascript -e 'tell application \"Emacs\" to activate'"))
;(add-hook 'server-switch-hook 'raise-emacs-on-aqua)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; this is from PDFView instrs:
;; Starts the Emacs server
(server-start)

;; ;; The following only works with AUCTeX loaded
;; ;; To make PDFView jump to the relevant line of the LaTeX source by Cmd + 
Click:

(require 'tex-site)
(add-hook 'TeX-mode-hook
    (lambda ()
        (add-to-list 'TeX-output-view-style
             '("^pdf$" "."
               "/Applications/PDFView.app/Contents/MacOS/gotoline.sh %n 
%(OutFullPath)"))
        (add-to-list 'TeX-expand-list
            '("%(OutFullPath)" (lambda nil
                                 (expand-file-name
                                  (TeX-active-master (TeX-output-extension) t)
                                  (TeX-master-directory))))))
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;Singular in emacs.
(setq load-path (cons "</sw/share/Singular>" load-path))
(autoload 'singular "singular"
  "Start Singular using default values." t)
(autoload 'singular-other "singular"
  "Ask for arguments and start Singular." t)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;To activate nxhtml-mode.
; (load "autostart") 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;elecgric-buffer-list
(global-set-key "\C-x\C-b" 'electric-buffer-list)

;;;;  abrir archivo reciente ;;;;


(require 'recentf)
(setq recentf-auto-cleanup 'never)
(setq recentf-max-saved-items 100)
(recentf-mode 1)
;; Macaulay 2 start

(setq load-path
       (append
        '( "/Applications/Macaulay2-1.1/share/emacs/site-lisp/" )
        load-path))

;; this version will give an error if M2-init.el is not found:
(load "M2-init")

;; this version will not give an error if M2-init.el is not found:
;(load "M2-init" t)

; comment out the following line with an initial semicolon if you 
; want to use your f12 key for something else
(global-set-key [ f12 ] 'M2)
;; Macaulay 2 end






      
____________________________________________________________________________________
You rock. That's why Blockbuster's offering you one month of Blockbuster Total 
Access, No Cost.  
http://tc.deals.yahoo.com/tc/blockbuster/text5.com

--~--~---------~--~----~------------~-------~--~----~
Carbon Emacs User Group
http://groups.google.com/group/carbon-emacs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to