2017-02-24 12 views
0

macports経由でインストールされたOS Xでemacsバージョン26.0.50を使用しています。私が使用しているemacs-app-develポートです。emacs 26.0.50リストパッケージエラー '無効なバージョンリスト'

私は、MXのリスト・パッケージを使用して、インストールしたパッケージの一覧を取得しようとするたびに、私はエラーを取得:

無効なバージョンリスト「(8 6 -4」)

と機能だけで死ぬ、続かない。

実行中のM-x list-packagesはコマンドラインで実行されるmacports経由でインストールされた他のemacsバージョンで動作するので、ちょっとイライラします。

;;;Package Install 
(require 'package) 
(add-to-list 'package-archives 
    '("marmalade" . "http://marmalade-repo.org/packages/")) 
(add-to-list 'package-archives 
     '("melpa" . "http://melpa.org/packages/")) 
(when (< emacs-major-version 24) 
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/"))) 
(package-initialize) 

それが正確に作業を行い、他のEmacsのバージョンによって使用されるのと同じである:

は、ここでリスト、パッケージで使用されるパッケージの情報が含まれている私の.emacsファイルの一部です。

+0

Stack Overflowでの*プレリリース*版のEmacsのバグレポートを作成しないでください。 'M-x report-emacs-bug' – phils

答えて

0

私はmacでもemacs 25を実行しています。パッケージファイル経由でインストールします。

ここに私のinit.elファイルがあります。私はemacsも新しくなっていますが、このファイルとあなたのファイルを比較して、紛失しているものが見つかったらうれしいです。

;;led 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. 


(load-theme 'monokai t) 
(setq frame-title-format "emacs") 

(menu-bar-mode -1) 
(tool-bar-mode -1) 

(scroll-bar-mode -1) 
(set-default 'cursor-type 'hbar) 

(column-number-mode) 

(show-paren-mode) 

(global-hl-line-mode) 

(winner-mode t) 

(windmove-default-keybindings) 

(require 'package) 

(add-to-list 'package-archives 
      '("melpa" . "http://melpa.milkbox.net/packages/") 
      t) 

(add-to-list 'package-archives 
      '("marmalade" . "http://marmalade-repo.org/packages/") 
      t) 

(package-initialize) 

(global-set-key (kbd "M-x") 'smex) 

(ido-mode t) 

(setq ido-enable-flex-matching t) 

(global-set-key (kbd "C-c C-c M-x") 'execute-extended-command) 

(ac-config-default) 

(nlinum-mode) 

(autopair-global-mode) 

(global-undo-tree-mode) 

(global-set-key (kbd "M-/") 'undo-tree-visualize) 

(global-set-key (kbd "C-M-z") 'Switch-Window) 

(global-set-key (kbd "C->") 'ace-jump-mode) 

(require 'auto-complete) 

(global-auto-complete-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. 
'(package-selected-packages 
    (quote 
    (powerline ## powershell minimal-theme minimap elpy auto-complete yari yaml-mode yagist xref-js2 whole-line-or-region whitespace-cleanup-mode wgre\ 
p-ag vc-darcs unfill tidy textile-mode tagedit switch-window sql-indent smex smarty-mode slime-company skewer-less session scss-mode scratch sass-mode\ 
ruby-hash-syntax rspec-mode robe rinari regex-tool redshank rainbow-mode rainbow-delimiters python-mode projectile-rails project-local-variables powe\ 
rline-evil pip-requirements php-mode paredit-everywhere page-break-lines osx-location origami org-pomodoro org-mac-iCal org-fstree org-evil org-clipli\ 
nk nlinum mwe-log-commands multiple-cursors move-dup monokai-theme mmm-mode markdown-mode magit-gh-pulls lua-mode lively less-css-mode ledger-mode jso\ 
n-mode js-comint jedi ipretty intero indent-guide immortal-scratch icicles ibuffer-vc htmlize hl-sexp hippie-expand-slime hindent highlight-symbol hig\ 
hlight-quoted highlight-escape-sequences hayoo guide-key grab-mac-link goto-gem gnuplot gitignore-mode github-issues github-clone gitconfig-mode git-t\ 
imemachine git-messenger git-blamed fullframe flymake-python-pyflakes flycheck-pyflakes flycheck-package flycheck-ledger flycheck-elm flycheck-clojure\ 
find-file-in-repository fill-column-indicator expand-region exec-path-from-shell erlang elm-mode elisp-slime-nav elein dsvn django-snippets django-mo\ 
de django-manage disable-mouse dired-sort dired+ diminish diff-hl default-text-scale darcsum csv-nav csv-mode css-eldoc crontab-mode counsel company-q\ 
uickhelp company-anaconda color-theme-sanityinc-tomorrow color-theme-sanityinc-solarized color-theme-monokai coffee-mode cljsbuild-mode cl-lib-highlig\ 
ht cask-mode bundler bug-reference-github browse-kill-ring browse-at-remote avy autopair auto-compile anzu airline-themes aggressive-indent ag)))) 
(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. 
) 

(global-set-key (kbd "C-}") 'mc/mark-next-like-this) 

(global-set-key (kbd "C-{") 'mc/mark-previous-like-this) 

(powerline-center-theme) 
関連する問題