diff options
| author | Chong Yidong | 2012-12-04 10:47:43 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-12-04 10:47:43 +0800 |
| commit | 770de7cf722062fb90e1d8cb344d7dfbd89013ed (patch) | |
| tree | a213f1b9fd0c6cda30733a4a495dd4a2bc21bc4b /lisp/org | |
| parent | c38a186c2e06e0a351d166c5ef06d7307e145f45 (diff) | |
| download | emacs-770de7cf722062fb90e1d8cb344d7dfbd89013ed.tar.gz emacs-770de7cf722062fb90e1d8cb344d7dfbd89013ed.zip | |
Obsolete longlines.el.
* longlines.el: Move to obsolete/.
* lisp/org/org-bibtex.el (org-bibtex-ask): Use visual-line-mode instead of
longlines-mode.
* lisp/vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
Remove code referring to longlines mode.
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/org/org-bibtex.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 9bf731fb6b2..98383e56532 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-12-04 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * org-bibtex.el (org-bibtex-ask): Use visual-line-mode instead of | ||
| 4 | longlines-mode. | ||
| 5 | |||
| 1 | 2012-10-26 Achim Gratz <stromeko@stromeko.de> | 6 | 2012-10-26 Achim Gratz <stromeko@stromeko.de> |
| 2 | 7 | ||
| 3 | * ob-ditaa.el: Needs to (require 'org-compat) for | 8 | * ob-ditaa.el: Needs to (require 'org-compat) for |
diff --git a/lisp/org/org-bibtex.el b/lisp/org/org-bibtex.el index f8e07adcd8a..aaae8d52de8 100644 --- a/lisp/org/org-bibtex.el +++ b/lisp/org/org-bibtex.el | |||
| @@ -120,7 +120,6 @@ | |||
| 120 | (declare-function bibtex-generate-autokey "bibtex" ()) | 120 | (declare-function bibtex-generate-autokey "bibtex" ()) |
| 121 | (declare-function bibtex-parse-entry "bibtex" (&optional content)) | 121 | (declare-function bibtex-parse-entry "bibtex" (&optional content)) |
| 122 | (declare-function bibtex-url "bibtex" (&optional pos no-browse)) | 122 | (declare-function bibtex-url "bibtex" (&optional pos no-browse)) |
| 123 | (declare-function longlines-mode "longlines" (&optional arg)) | ||
| 124 | (declare-function org-babel-trim "ob" (string &optional regexp)) | 123 | (declare-function org-babel-trim "ob" (string &optional regexp)) |
| 125 | 124 | ||
| 126 | 125 | ||
| @@ -381,7 +380,7 @@ This variable is relevant only if `org-bibtex-export-tags-as-keywords' is t." | |||
| 381 | (buf-name (format "*Bibtex Help %s*" name))) | 380 | (buf-name (format "*Bibtex Help %s*" name))) |
| 382 | (with-output-to-temp-buffer buf-name | 381 | (with-output-to-temp-buffer buf-name |
| 383 | (princ (cdr (assoc field org-bibtex-fields)))) | 382 | (princ (cdr (assoc field org-bibtex-fields)))) |
| 384 | (with-current-buffer buf-name (longlines-mode t)) | 383 | (with-current-buffer buf-name (visual-line-mode 1)) |
| 385 | (org-fit-window-to-buffer (get-buffer-window buf-name)) | 384 | (org-fit-window-to-buffer (get-buffer-window buf-name)) |
| 386 | ((lambda (result) (when (> (length result) 0) result)) | 385 | ((lambda (result) (when (> (length result) 0) result)) |
| 387 | (read-from-minibuffer (format "%s: " name)))))) | 386 | (read-from-minibuffer (format "%s: " name)))))) |