+2011-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
+ Use plist-get instead of the cl function getf.
+
2011-01-27 Glenn Morris <rgm@gnu.org>
* gnus-util.el (float-time): Get rid of compiler warning, again.
(concat
(mapconcat
(lambda (overlay)
- (let ((string (getf (overlay-properties overlay)
- 'before-string)))
+ (let ((string (plist-get
+ (overlay-properties overlay)
+ 'before-string)))
(if (not string)
""
(overlay-put overlay 'before-string "")
(dolist (overlay overlays)
(setq previous-width
(+ previous-width
- (length (getf (overlay-properties overlay) 'before-string)))))
+ (length (plist-get (overlay-properties overlay)
+ 'before-string)))))
(+ width previous-width))))
(defun shr-put-color-1 (start end type color)