~ubuntu-branches/debian/sid/geiser/sid

« back to all changes in this revision

Viewing changes to elisp/geiser-doc.el

  • Committer: Package Import Robot
  • Author(s): David Bremner
  • Date: 2012-01-24 20:20:32 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120124202032-dsmjv26u95clot9i
Tags: 0.1.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; geiser-doc.el -- accessing scheme-provided documentation
2
2
 
3
 
;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz
 
3
;; Copyright (C) 2009, 2010, 2011 Jose Antonio Ortega Ruiz
4
4
 
5
5
;; This program is free software; you can redistribute it and/or
6
6
;; modify it under the terms of the Modified BSD License. You should
224
224
(defun geiser-doc--insert-title (title)
225
225
  (let ((p (point)))
226
226
    (insert (format "%s" title))
227
 
    (fill-paragraph)
 
227
    (fill-paragraph nil)
228
228
    (let ((indent-line-function 'lisp-indent-line))
229
229
      (indent-region p (point)))
230
230
    (put-text-property p (point) 'face 'geiser-font-lock-doc-title)