emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog progmodes/vhdl-mode.el


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/lisp ChangeLog progmodes/vhdl-mode.el
Date: Sat, 03 Jan 2009 04:01:01 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/01/03 04:01:00

Modified files:
        lisp           : ChangeLog 
        lisp/progmodes : vhdl-mode.el 

Log message:
        (vhdl-current-line): Don't hardcode point-min==1.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15026&r2=1.15027
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/vhdl-mode.el?cvsroot=emacs&r1=1.75&r2=1.76

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15026
retrieving revision 1.15027
diff -u -b -r1.15026 -r1.15027
--- ChangeLog   2 Jan 2009 17:04:21 -0000       1.15026
+++ ChangeLog   3 Jan 2009 04:00:53 -0000       1.15027
@@ -1,3 +1,8 @@
+2009-01-03  Stefan Monnier  <address@hidden>
+
+       * progmodes/vhdl-mode.el (vhdl-current-line): Don't hardcode
+       point-min==1.
+
 2009-01-02  Juanma Barranquero  <address@hidden>
 
        * bindings.el (mode-line-eol-desc): Fix typo in help message.
@@ -16,8 +21,8 @@
 
 2009-01-01  Martin Rudalics  <address@hidden>
 
-       * simple.el (minibuffer-default-add-shell-commands): Fix
-       doc-string typo.
+       * simple.el (minibuffer-default-add-shell-commands):
+       Fix doc-string typo.
 
 2009-01-01  Chong Yidong  <address@hidden>
 
@@ -25,8 +30,8 @@
 
        * language/khmer.el: Fix setting of composition-function-table.
 
-       * language/tibet-util.el (tibetan-composition-function): Remove
-       unused function, obsoleted by 2008-09-05 change to tibetan.el.
+       * language/tibet-util.el (tibetan-composition-function):
+       Remove unused function, obsoleted by 2008-09-05 change to tibetan.el.
 
        * simple.el (minibuffer-default): Add defvar.
 
@@ -51,8 +56,8 @@
 
 2008-12-30  Kenichi Handa  <address@hidden>
 
-       * language/japanese.el (compose-gstring-for-variation-glyph): New
-       function.  Register it in composition-function-table.
+       * language/japanese.el (compose-gstring-for-variation-glyph):
+       New function.  Register it in composition-function-table.
 
        * composite.el (lglyph-set-code): New function.
 
@@ -16754,7 +16759,7 @@
 ;; bug-reference-url-format: 
"http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s";
 ;; End:
 
-    Copyright (C) 2008  Free Software Foundation, Inc.
+    Copyright (C) 2008, 2009  Free Software Foundation, Inc.
 
   This file is part of GNU Emacs.
 

Index: progmodes/vhdl-mode.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/progmodes/vhdl-mode.el,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -b -r1.75 -r1.76
--- progmodes/vhdl-mode.el      14 Nov 2008 13:05:32 -0000      1.75
+++ progmodes/vhdl-mode.el      3 Jan 2009 04:00:59 -0000       1.76
@@ -12164,7 +12164,7 @@
     (widen)
     (save-excursion
       (beginning-of-line)
-      (1+ (count-lines 1 (point))))))
+      (1+ (count-lines (point-min) (point))))))
 
 (defun vhdl-line-kill-entire (&optional arg)
   "Delete entire line."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]