Hello Nicolas, "Sebastien Vauban" wrote: >> When typing more than 80 characters (or so) on a line, waiting for the >> automatic filling, I get this every time I type any character: >> >> Debugger entered--Lisp error: (wrong-type-argument number-or-marker-p nil) >> <(251038 nil) >> (if (< p post-affiliated) nil (cond ((eql type (quote comment)) ... >> (let* ((p (line-beginning-position)) (element (save-excursion ... >> (if (and (derived-mode-p (quote message-mode)) ... >> (save-restriction (widen) (if (and (derived-mode-p ... >> (save-excursion (save-restriction (widen) (if (and ... >> org-adaptive-fill-function() > > FYI, this seems to happen when in an itemized list, not on a regular > paragraph... > >> GNU Emacs 24.2.50.1 (i386-mingw-nt5.1.2600) of 2012-10-22 on DANI-PC >> Org-mode version 7.9.2 (release_7.9.2-533-g07c889 @ >> d:/home/sva/src/org-mode/lisp/)
Thanks for your answer -- which I don't see yet on Gmane. However, after updating to Org-mode version 7.9.2 (release_7.9.2-541-gdda563 @ d:/home/sva/src/org-mode/lisp/), I have another problem with the exact same cause (typing more than 80 characters, or pressing M-q on an itemized list): --8<---------------cut here---------------start------------->8--- Debugger entered--Lisp error: (wrong-type-argument integer-or-marker-p nil) goto-char(nil) (save-excursion (goto-char item) (looking-at "[ ]*\\(\\S-+\\)\\(.*[ ]+::\\)?\\([ ]+\\|$\\)") (setq bpos (match-beginning 1) tpos (match-end 0) bcol (progn (goto-char bpos) (current-column)) tcol (progn (goto-char tpos) (current-column))) (if (> tcol (+ bcol org-description-max-indent)) (progn (setq tcol (+ bcol 5))))) (let (bpos bcol tpos tcol) (save-excursion (goto-char item) (looking-at "[ ]*\\(\\S-+\\)\\(.*[ ]+::\\)?\\([ ]+\\|$\\)") (setq bpos (match-beginning 1) tpos (match-end 0) bcol (progn (goto-char bpos) (current-column)) tcol (progn (goto-char tpos) (current-column))) (if (> tcol (+ bcol org-description-max-indent)) (progn (setq tcol (+ bcol 5))))) tcol) org-list-item-body-column(nil) (make-string (org-list-item-body-column post-affiliated) 32) (cond ((eql type (quote comment)) (looking-at "[ ]*# ?") (match-string 0)) ((eql type (quote footnote-definition)) "") ((memql type (quote (item plain-list))) (make-string (org-list-item-body-column post-affiliated) 32)) ((eql type (quote paragraph)) (let ((parent (org-element-property :parent element))) (cond ((eq (org-element-type parent) (quote item)) (make-string (org-list-item-body-column (org-element-property :begin parent)) 32)) ((save-excursion (beginning-of-line) (looking-at "[ ]+")) (match-string 0)) (t "")))) ((eql type (quote comment-block)) (let* ((cbeg (save-excursion (goto-char post-affiliated) (forward-line) (point))) (cend (save-excursion (goto-char (org-element-property :end element)) (skip-chars-backward " \n") (line-beginning-position)))) (if (and (>= p cbeg) (< p cend)) (progn (if (save-excursion (beginning-of-line) (looking-at "[ ]+")) (match-string 0) "")))))) (if (and post-affiliated (< p post-affiliated)) nil (cond ((eql type (quote comment)) (looking-at "[ ]*# ?") (match-string 0)) ((eql type (quote footnote-definition)) "") ((memql type (quote (item plain-list))) (make-string (org-list-item-body-column post-affiliated) 32)) ((eql type (quote paragraph)) (let ((parent (org-element-property :parent element))) (cond ((eq (org-element-type parent) (quote item)) (make-string (org-list-item-body-column ...) 32)) ((save-excursion (beginning-of-line) (looking-at "[ ]+")) (match-string 0)) (t "")))) ((eql type (quote comment-block)) (let* ((cbeg (save-excursion (goto-char post-affiliated) (forward-line) (point))) (cend (save-excursion (goto-char ...) (skip-chars-backward " \n") (line-beginning-position)))) (if (and (>= p cbeg) (< p cend)) (progn (if (save-excursion ... ...) (match-string 0) ""))))))) (let* ((p (line-beginning-position)) (element (save-excursion (beginning-of-line) (org-element-at-point))) (type (org-element-type element)) (post-affiliated (org-element-property :post-affiliated element))) (if (and post-affiliated (< p post-affiliated)) nil (cond ((eql type (quote comment)) (looking-at "[ ]*# ?") (match-string 0)) ((eql type (quote footnote-definition)) "") ((memql type (quote (item plain-list))) (make-string (org-list-item-body-column post-affiliated) 32)) ((eql type (quote paragraph)) (let ((parent (org-element-property :parent element))) (cond ((eq ... ...) (make-string ... 32)) ((save-excursion ... ...) (match-string 0)) (t "")))) ((eql type (quote comment-block)) (let* ((cbeg (save-excursion ... ... ...)) (cend (save-excursion ... ... ...))) (if (and (>= p cbeg) (< p cend)) (progn (if ... ... "")))))))) (if (and (derived-mode-p (quote message-mode)) (not (message-in-body-p))) nil (let* ((p (line-beginning-position)) (element (save-excursion (beginning-of-line) (org-element-at-point))) (type (org-element-type element)) (post-affiliated (org-element-property :post-affiliated element))) (if (and post-affiliated (< p post-affiliated)) nil (cond ((eql type (quote comment)) (looking-at "[ ]*# ?") (match-string 0)) ((eql type (quote footnote-definition)) "") ((memql type (quote (item plain-list))) (make-string (org-list-item-body-column post-affiliated) 32)) ((eql type (quote paragraph)) (let ((parent ...)) (cond (... ...) (... ...) (t "")))) ((eql type (quote comment-block)) (let* ((cbeg ...) (cend ...)) (if (and ... ...) (progn ...)))))))) (save-restriction (widen) (if (and (derived-mode-p (quote message-mode)) (not (message-in-body-p))) nil (let* ((p (line-beginning-position)) (element (save-excursion (beginning-of-line) (org-element-at-point))) (type (org-element-type element)) (post-affiliated (org-element-property :post-affiliated element))) (if (and post-affiliated (< p post-affiliated)) nil (cond ((eql type (quote comment)) (looking-at "[ ]*# ?") (match-string 0)) ((eql type (quote footnote-definition)) "") ((memql type (quote ...)) (make-string (org-list-item-body-column post-affiliated) 32)) ((eql type (quote paragraph)) (let (...) (cond ... ... ...))) ((eql type (quote comment-block)) (let* (... ...) (if ... ...)))))))) (save-excursion (save-restriction (widen) (if (and (derived-mode-p (quote message-mode)) (not (message-in-body-p))) nil (let* ((p (line-beginning-position)) (element (save-excursion (beginning-of-line) (org-element-at-point))) (type (org-element-type element)) (post-affiliated (org-element-property :post-affiliated element))) (if (and post-affiliated (< p post-affiliated)) nil (cond ((eql type ...) (looking-at "[ ]*# ?") (match-string 0)) ((eql type ...) "") ((memql type ...) (make-string ... 32)) ((eql type ...) (let ... ...)) ((eql type ...) (let* ... ...)))))))) org-adaptive-fill-function() (let* ((fill-prefix (org-adaptive-fill-function)) (adaptive-fill-mode (not (equal fill-prefix "")))) (if fill-prefix (progn (do-auto-fill)))) (progn (let* ((fill-prefix (org-adaptive-fill-function)) (adaptive-fill-mode (not (equal fill-prefix "")))) (if fill-prefix (progn (do-auto-fill))))) (if (and fc (> (current-column) fc)) (progn (let* ((fill-prefix (org-adaptive-fill-function)) (adaptive-fill-mode (not (equal fill-prefix "")))) (if fill-prefix (progn (do-auto-fill)))))) (let ((fc (current-fill-column))) (if (and fc (> (current-column) fc)) (progn (let* ((fill-prefix (org-adaptive-fill-function)) (adaptive-fill-mode (not (equal fill-prefix "")))) (if fill-prefix (progn (do-auto-fill))))))) org-auto-fill-function() self-insert-command(1) (cond ((and org-use-speed-commands (setq org-speed-command (run-hook-with-args-until-success (quote org-speed-command-hook) (this-command-keys)))) (cond ((commandp org-speed-command) (setq this-command org-speed-command) (call-interactively org-speed-command)) ((functionp org-speed-command) (funcall org-speed-command)) ((and org-speed-command (listp org-speed-command)) (eval org-speed-command)) (t (let (org-use-speed-commands) (call-interactively (quote org-self-insert-command)))))) ((and (org-table-p) (progn (and (featurep (quote org-table)) org-table-auto-blank-field (member last-command (quote (org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas/expand))) (if (or (equal ... 32) (looking-at "[^|\n]* |")) (let (org-table-may-need-update) (org-table-blank-field)) (org-table-blank-field))) t) (eq N 1) (looking-at "[^|\n]* |")) (let (org-table-may-need-update) (goto-char (1- (match-end 0))) (backward-delete-char 1) (goto-char (match-beginning 0)) (self-insert-command N))) (t (setq org-table-may-need-update t) (self-insert-command N) (org-fix-tags-on-the-fly) (if org-self-insert-cluster-for-undo (if (not (eq last-command (quote org-self-insert-command))) (setq org-self-insert-command-undo-counter 1) (if (>= org-self-insert-command-undo-counter 20) (setq org-self-insert-command-undo-counter 1) (and (> org-self-insert-command-undo-counter 0) buffer-undo-list (listp buffer-undo-list) (not (cadr buffer-undo-list)) (setcdr buffer-undo-list (cddr buffer-undo-list))) (setq org-self-insert-command-undo-counter (1+ org-self-insert-command-undo-counter))))))) org-self-insert-command(1) call-interactively(org-self-insert-command nil nil) --8<---------------cut here---------------end--------------->8--- Best regards, Seb -- Sebastien Vauban