Mercurial > emacs
comparison etc/NEWS @ 59141:d9de1e27928f
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 27 Dec 2004 17:08:45 +0000 |
parents | ebbf26327c31 |
children | c8c4178618c3 |
comparison
equal
deleted
inserted
replaced
59140:13368da050f1 | 59141:d9de1e27928f |
---|---|
95 ** Building with -DENABLE_CHECKING does not automatically build with union | 95 ** Building with -DENABLE_CHECKING does not automatically build with union |
96 types any more. Add -DUSE_LISP_UNION_TYPE if you want union types. | 96 types any more. Add -DUSE_LISP_UNION_TYPE if you want union types. |
97 | 97 |
98 | 98 |
99 * Changes in Emacs 21.4 | 99 * Changes in Emacs 21.4 |
100 | |
101 ** calculator.el now has radix grouping mode. In this mode a | |
102 separator character is used between every few digits, making it | |
103 easier to indicate byte boundries etc. See the documentation of | |
104 the `calculator-radix-grouping-mode' custom variable. | |
100 | 105 |
101 ** You can now follow links by clicking Mouse-1 on the link. | 106 ** You can now follow links by clicking Mouse-1 on the link. |
102 | 107 |
103 Traditionally, Emacs uses a Mouse-1 click to set point and a Mouse-2 | 108 Traditionally, Emacs uses a Mouse-1 click to set point and a Mouse-2 |
104 click to follow a link, whereas most other applications use a Mouse-1 | 109 click to follow a link, whereas most other applications use a Mouse-1 |
2393 ** `cfengine-mode' is a major mode for editing GNU Cfengine | 2398 ** `cfengine-mode' is a major mode for editing GNU Cfengine |
2394 configuration files. | 2399 configuration files. |
2395 | 2400 |
2396 * Lisp Changes in Emacs 21.4 | 2401 * Lisp Changes in Emacs 21.4 |
2397 | 2402 |
2403 +++ | |
2404 ** The function symbol-file tells you which file defined | |
2405 a certain function or variable. | |
2406 | |
2398 ** Lisp code can now test if a given buffer position is inside a | 2407 ** Lisp code can now test if a given buffer position is inside a |
2399 clickable link with the new function `mouse-on-link-p'. This is the | 2408 clickable link with the new function `mouse-on-link-p'. This is the |
2400 function used by the new `mouse-1-click-follows-link' functionality. | 2409 function used by the new `mouse-1-click-follows-link' functionality. |
2401 | 2410 |
2402 +++ | 2411 +++ |
3101 | 3110 |
3102 +++ | 3111 +++ |
3103 ** `load-history' can now have elements of the form (t . FUNNAME), | 3112 ** `load-history' can now have elements of the form (t . FUNNAME), |
3104 which means FUNNAME was previously defined as an autoload (before the | 3113 which means FUNNAME was previously defined as an autoload (before the |
3105 current file redefined it). | 3114 current file redefined it). |
3115 | |
3116 +++ | |
3117 ** `load-history' now records (defun . FUNNAME) when a function is | |
3118 defined. For a variable, it records just the variable name. | |
3106 | 3119 |
3107 +++ | 3120 +++ |
3108 ** New Lisp library testcover.el works with edebug to help you determine | 3121 ** New Lisp library testcover.el works with edebug to help you determine |
3109 whether you've tested all your Lisp code. Function testcover-start | 3122 whether you've tested all your Lisp code. Function testcover-start |
3110 instruments all functions in a given file. Then test your code. Function | 3123 instruments all functions in a given file. Then test your code. Function |