comparison lisp/calc/calc-units.el @ 109033:d150a25a0eb9

Add some utf-8 coding cookies. * lisp/calc/calc-aent.el, lisp/calc/calc-ext.el, lisp/calc/calc-lang.el: * lisp/calc/calc-store.el, lisp/calc/calc-units.el, lisp/calc/calc.el: * lisp/calc/calccomp.el: Add explicit utf-8 coding cookies to files with utf-8 characters. Also delete trailing whitespace.
author Glenn Morris <rgm@gnu.org>
date Tue, 22 Jun 2010 00:41:10 -0700
parents c84578d13e42
children 4e76c4e4f20f
comparison
equal deleted inserted replaced
109032:d8720405694a 109033:d150a25a0eb9
1 ;;; calc-units.el --- unit conversion functions for Calc 1 ;;; calc-units.el --- unit conversion functions for Calc
2 2
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, 2005,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 5
6 ;; Author: David Gillespie <daveg@synaptics.com> 6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <jay.p.belanger@gmail.com> 7 ;; Maintainer: Jay Belanger <jay.p.belanger@gmail.com>
8 8
9 ;; This file is part of GNU Emacs. 9 ;; This file is part of GNU Emacs.
321 ( 0 (^ 10 0) nil ) 321 ( 0 (^ 10 0) nil )
322 ( ?d (^ 10 -1) "Deci" ) 322 ( ?d (^ 10 -1) "Deci" )
323 ( ?c (^ 10 -2) "Centi" ) 323 ( ?c (^ 10 -2) "Centi" )
324 ( ?m (^ 10 -3) "Milli" ) 324 ( ?m (^ 10 -3) "Milli" )
325 ( ?u (^ 10 -6) "Micro" ) 325 ( ?u (^ 10 -6) "Micro" )
326 ( ?μ (^ 10 -6) "Micro" ) 326 ( ?μ (^ 10 -6) "Micro" )
327 ( ?n (^ 10 -9) "Nano" ) 327 ( ?n (^ 10 -9) "Nano" )
328 ( ?p (^ 10 -12) "Pico" ) 328 ( ?p (^ 10 -12) "Pico" )
329 ( ?f (^ 10 -15) "Femto" ) 329 ( ?f (^ 10 -15) "Femto" )
330 ( ?a (^ 10 -18) "Atto" ) 330 ( ?a (^ 10 -18) "Atto" )
331 ( ?z (^ 10 -21) "zepto" ) 331 ( ?z (^ 10 -21) "zepto" )
1546 (pop-to-buffer (get-buffer "*Units Table*")) 1546 (pop-to-buffer (get-buffer "*Units Table*"))
1547 (display-buffer (get-buffer "*Units Table*"))))) 1547 (display-buffer (get-buffer "*Units Table*")))))
1548 1548
1549 (provide 'calc-units) 1549 (provide 'calc-units)
1550 1550
1551 ;; Local variables:
1552 ;; coding: utf-8
1553 ;; End:
1554
1551 ;; arch-tag: e993314f-3adc-4191-be61-4ef8874881c4 1555 ;; arch-tag: e993314f-3adc-4191-be61-4ef8874881c4
1552 ;;; calc-units.el ends here 1556 ;;; calc-units.el ends here