Skip to content

Commit

Permalink
More tokens for fill-adapt bullets
Browse files Browse the repository at this point in the history
  • Loading branch information
ryants committed Oct 8, 2007
1 parent 5b6abec commit a9bd6ff
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions lisp/doxymacs.el.in
Expand Up @@ -28,7 +28,7 @@
;;
;; Doxymacs homepage: http://doxymacs.sourceforge.net/
;;
;; $Id: doxymacs.el.in,v 1.26 2007/06/10 13:17:24 ryants Exp $
;; $Id: doxymacs.el.in,v 1.27 2007/10/08 20:05:15 ryants Exp $

;; Commentary:
;;
Expand Down Expand Up @@ -115,11 +115,11 @@

;; Change log:
;;
;; 10/06/2007 - version 1.8.0
;; 10/06/2007 - version 1.8.0
;; 02/02/2007 - bug #1490021: Allow spaces in @param [in] documentation.
;; bug #1496399: Allow for different ways of user-mail-address
;; to be defined.
;; 22/04/2006 - feature #1338245: Add tokens to filladapt to match
;; 22/04/2006 - feature #1338245: Add tokens to filladapt to match
;; doxygen markup.
;; - version 1.7.0
;; 04/06/2005 - version 1.6.0
Expand Down Expand Up @@ -488,7 +488,15 @@ Key bindings:
(when doxymacs-mode
(when (boundp 'filladapt-token-table)
;; add tokens to filladapt to match doxygen markup
(let ((bullet-regexp "[@\\]\\(param\\(?:\\s-*\\[\\(?:in\\|out\\|in,out\\)\\]\\)?\\s-+\\sw+\\|return\\)"))
(let ((bullet-regexp (concat "[@\\]"
"\\(param\\(?:\\s-*"
"\\[\\(?:in\\|out\\|in,out\\)\\]\\)?"
"\\s-+\\sw+"
"\\|return\\|attention\\|note"
"\\|brief\\|li\\|arg\\|remarks"
"\\|invariant\\|post\\|pre"
"\\|todo\\|warning\\|bug"
"\\|deprecated\\|since\\|test\\)")))
(unless (assoc bullet-regexp filladapt-token-table)
(setq filladapt-token-table
(append filladapt-token-table
Expand Down

0 comments on commit a9bd6ff

Please sign in to comment.