Hello,

Anyone also experience the above error, along with a delay, and if
typing during that delay, lost characters?  Most notably when typing
inside a WITH-OPEN-FILE macro, but I know it also happened in a few
other cases, although I forgot where.


This is using a fairly recent SLIME and quite recent ECL (although that
problem exists since some time).  In case it matters, this is using
emacs-23 (console/nox11), attached is ~/.emacs


And the .emacsrc only has: (require :asdf)


In the extra lisp buffers I can see:

error in process filter: if: Wrong number of arguments: nil, 137
error in process filter: Wrong number of arguments: nil, 137

(:emacs-rex
 (swank:autodoc
  '("defun" "test" nil
    ("with-open-file"
     ("s" "\"/tmp/crow-httpd-logo.png\"" ":direction" ":input")
     "" swank::%cursor-marker%))
  :print-right-margin 239)
 ":gd" t 4966)
(:return
 (:ok "Arglist Error: \"In function STRUCTURE-REF, the value of the first 
argument is\n  :NOT-AVAILABLE\nwhich is not of the expected type ARGLIST\"")
 4966)
(:emacs-rex
 (swank:autodoc
  '("defun" "test" nil
    ("with-open-file"
     ("s" "\"/tmp/crow-httpd-logo.png\"" ":direction" ":input")
     "" swank::%cursor-marker%))
  :print-right-margin 239)
 ":gd" t 4967)
(:return
 (:ok "Arglist Error: \"In function STRUCTURE-REF, the value of the first 
argument is\n  :NOT-AVAILABLE\nwhich is not of the expected type ARGLIST\"")
 4967)


Thanks,
-- 
Matt
(defun myframes-3 ()
  (split-window-horizontally 78)
  (other-window 1)
  (split-window-horizontally 78)
  (other-window 1)
  (split-window-vertically 40)
  (other-window 1))

(defun myframes-2 ()
  (split-window-horizontally 80)
  (other-window 1)
  (split-window-vertically 40)
  (other-window 1))

(defun myframes-1 ()
  (split-window-vertically 40)
  (other-window 1))

(defun myframes ()
  "Restores custom frame layout."
  (interactive)
  (delete-other-frames)
  (let ((width (frame-width (selected-frame))))
    (cond
     ((> width 164) (myframes-3))
     ((> width 118) (myframes-2))
     (t (myframes-1)))))
(myframes)

(global-set-key [begin] 'beginning-of-line)


(set-language-environment "UTF-8")
(setq slime-net-coding-system 'utf-8-unix)

(setq common-lisp-hyperspec-root
      "file:///data/doc/CommonLisp/HyperSpec/HyperSpec/")
(setq browse-url-browser-function 'browse-url-generic
      browse-url-generic-program "/usr/local/libexec/tmux-lynx.sh")
(setq inferior-lisp-program "/usr/local/ecl/bin/ecl")
(add-to-list 'load-path "~/emacs-scripts")
(add-to-list 'load-path "~/emacs-scripts/slime")
(require 'slime)
(slime-setup '(slime-fancy slime-asdf))
(slime)

(autoload 'paredit-mode "paredit"
  "Minor mode for pseudo-structurally editing Lisp code."
  t)

(global-font-lock-mode t)
(show-paren-mode t)

(require 'parenface)
(load-file "/usr/share/misc/NetBSD.el")

(menu-bar-mode nil)
(iswitchb-mode t)
(line-number-mode t)
(column-number-mode t)
(transient-mark-mode t)

(require 'font-lock)
(font-lock-add-keywords
        'c-mode
        '(("\\<\\(XXX\\)" 1 highlight t)))
(font-lock-add-keywords
        'lisp-mode
        '(("\\<\\(XXX\\)" 1 highlight t)))

(setq inhibit-splash-screen t)

------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list

Reply via email to