aboutsummaryrefslogtreecommitdiff
path: root/emms-streams.el
diff options
context:
space:
mode:
authorMichael Olson <mwolson@gnu.org>2006-04-20 23:47:00 +0000
committerMichael Olson <mwolson@gnu.org>2006-04-20 23:47:00 +0000
commita33158e96b8da3e4be465baac2e918f9127a5559 (patch)
tree21c3846f3b375fab69047d474cce30055bdce905 /emms-streams.el
parent6e194a2d2a308faac79be89e26b6a49fe04e6717 (diff)
Make XEmacs21 and Emacs21 happy.
darcs-hash:20060420234749-1bfb2-e458134b41ba8e28d25030fe5b6d6b8f4222c28d.gz
Diffstat (limited to 'emms-streams.el')
-rw-r--r--emms-streams.el15
1 files changed, 2 insertions, 13 deletions
diff --git a/emms-streams.el b/emms-streams.el
index cd35b86..a0214d7 100644
--- a/emms-streams.el
+++ b/emms-streams.el
@@ -157,17 +157,6 @@ needed info.")
map)
"Keymap for `emms-stream-menu'.")
-(defun emms-stream-line-number-at-pos (&optional pos)
- "Return (narrowed) buffer line number at position POS.
-If POS is nil, use current buffer location."
- (let ((opoint (or pos (point))) start)
- (save-excursion
- (goto-char (point-min))
- (setq start (point))
- (goto-char opoint)
- (forward-line 0)
- (1+ (count-lines start (point))))))
-
;;;###autoload
(defun emms-streams ()
"Opens the EMMS Streams interface."
@@ -319,7 +308,7 @@ Don't forget to run `emms-stream-save-bookmarks-file' after !"
sURL:
nFeed descriptor:
SType (url or streamlist): ")
- (let* ((line (emms-stream-line-number-at-pos (point)))
+ (let* ((line (emms-line-number-at-pos (point)))
(index (+ (/ line 2) 1)))
(setq emms-stream-list (emms-stream-insert-at index (list name url fd type)
emms-stream-list))
@@ -331,7 +320,7 @@ SType (url or streamlist): ")
Don't forget to save your modifications !"
(interactive)
- (let ((line (emms-stream-line-number-at-pos (point))))
+ (let ((line (emms-line-number-at-pos (point))))
(setq emms-stream-list
(remove (emms-stream-get-bookmark-at-point) emms-stream-list))
(emms-stream-redisplay)