aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2009-01-03 04:00:53 +0000
committerStefan Monnier2009-01-03 04:00:53 +0000
commit958a2b4c49b5f39a1eee119f311bb0995f7d29e1 (patch)
tree21d48b7ede8f526c7839be944aa9e6a1ed18fa90 /lisp
parent4c282a278309d213d3e3971829daceef8752cbed (diff)
downloademacs-958a2b4c49b5f39a1eee119f311bb0995f7d29e1.tar.gz
emacs-958a2b4c49b5f39a1eee119f311bb0995f7d29e1.zip
(vhdl-current-line): Don't hardcode point-min==1.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog19
-rw-r--r--lisp/progmodes/vhdl-mode.el2
2 files changed, 13 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index adb402c2912..308b04a4420 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/vhdl-mode.el (vhdl-current-line): Don't hardcode
4 point-min==1.
5
12009-01-02 Juanma Barranquero <lekktu@gmail.com> 62009-01-02 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * bindings.el (mode-line-eol-desc): Fix typo in help message. 8 * bindings.el (mode-line-eol-desc): Fix typo in help message.
@@ -16,8 +21,8 @@
16 21
172009-01-01 Martin Rudalics <rudalics@gmx.at> 222009-01-01 Martin Rudalics <rudalics@gmx.at>
18 23
19 * simple.el (minibuffer-default-add-shell-commands): Fix 24 * simple.el (minibuffer-default-add-shell-commands):
20 doc-string typo. 25 Fix doc-string typo.
21 26
222009-01-01 Chong Yidong <cyd@stupidchicken.com> 272009-01-01 Chong Yidong <cyd@stupidchicken.com>
23 28
@@ -25,8 +30,8 @@
25 30
26 * language/khmer.el: Fix setting of composition-function-table. 31 * language/khmer.el: Fix setting of composition-function-table.
27 32
28 * language/tibet-util.el (tibetan-composition-function): Remove 33 * language/tibet-util.el (tibetan-composition-function):
29 unused function, obsoleted by 2008-09-05 change to tibetan.el. 34 Remove unused function, obsoleted by 2008-09-05 change to tibetan.el.
30 35
31 * simple.el (minibuffer-default): Add defvar. 36 * simple.el (minibuffer-default): Add defvar.
32 37
@@ -51,8 +56,8 @@
51 56
522008-12-30 Kenichi Handa <handa@m17n.org> 572008-12-30 Kenichi Handa <handa@m17n.org>
53 58
54 * language/japanese.el (compose-gstring-for-variation-glyph): New 59 * language/japanese.el (compose-gstring-for-variation-glyph):
55 function. Register it in composition-function-table. 60 New function. Register it in composition-function-table.
56 61
57 * composite.el (lglyph-set-code): New function. 62 * composite.el (lglyph-set-code): New function.
58 63
@@ -16754,7 +16759,7 @@ See ChangeLog.13 for earlier changes.
16754;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s" 16759;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
16755;; End: 16760;; End:
16756 16761
16757 Copyright (C) 2008 Free Software Foundation, Inc. 16762 Copyright (C) 2008, 2009 Free Software Foundation, Inc.
16758 16763
16759 This file is part of GNU Emacs. 16764 This file is part of GNU Emacs.
16760 16765
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el
index 61c75ee60cd..a4e493d9112 100644
--- a/lisp/progmodes/vhdl-mode.el
+++ b/lisp/progmodes/vhdl-mode.el
@@ -12164,7 +12164,7 @@ options vhdl-upper-case-{keywords,types,attributes,enum-values}."
12164 (widen) 12164 (widen)
12165 (save-excursion 12165 (save-excursion
12166 (beginning-of-line) 12166 (beginning-of-line)
12167 (1+ (count-lines 1 (point)))))) 12167 (1+ (count-lines (point-min) (point))))))
12168 12168
12169(defun vhdl-line-kill-entire (&optional arg) 12169(defun vhdl-line-kill-entire (&optional arg)
12170 "Delete entire line." 12170 "Delete entire line."