comparison lisp/log-view.el @ 107421:eab59b26377e

Merge from trunk
author Jan D. <jan.h.d@swipnet.se>
date Mon, 15 Mar 2010 09:18:20 +0100
parents bb307bf2e752
children
comparison
equal deleted inserted replaced
107420:961da90b22a3 107421:eab59b26377e
2 2
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2008, 2009, 2010 Free Software Foundation, Inc. 4 ;; 2008, 2009, 2010 Free Software Foundation, Inc.
5 5
6 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> 6 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
7 ;; Keywords: rcs sccs cvs log version-control tools 7 ;; Keywords: rcs, sccs, cvs, log, version control, tools
8 8
9 ;; This file is part of GNU Emacs. 9 ;; This file is part of GNU Emacs.
10 10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify 11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by 12 ;; it under the terms of the GNU General Public License as published by
253 (set (make-local-variable 'font-lock-defaults) log-view-font-lock-defaults) 253 (set (make-local-variable 'font-lock-defaults) log-view-font-lock-defaults)
254 (set (make-local-variable 'beginning-of-defun-function) 254 (set (make-local-variable 'beginning-of-defun-function)
255 'log-view-beginning-of-defun) 255 'log-view-beginning-of-defun)
256 (set (make-local-variable 'end-of-defun-function) 256 (set (make-local-variable 'end-of-defun-function)
257 'log-view-end-of-defun) 257 'log-view-end-of-defun)
258 (set (make-local-variable 'cvs-minor-wrap-function) 'log-view-minor-wrap)) 258 (set (make-local-variable 'cvs-minor-wrap-function) 'log-view-minor-wrap)
259 (hack-dir-local-variables-non-file-buffer))
259 260
260 ;;;; 261 ;;;;
261 ;;;; Navigation 262 ;;;; Navigation
262 ;;;; 263 ;;;;
263 264