help-gnu-emacs archive search

Search String: Display: Description: Sort:

Results:

References: [ emacs (Too many documents hit. Ignored) ] [ float: 354 ]

Total 354 documents matching your query.

161. Re: generate methods body (.cpp) from header (.hh) (score: 18)
Author: HIDDEN
Date: Tue, 21 Jun 2005 16:11:44 +0800
;;;; `member-functions.el' ;;;; This is version 0.3.1 License: GPL ;;;; member-functions.el is free software; you can redistribute it ;;;; and/or modify it under the terms of the GNU General Public ;
/archive/html/help-gnu-emacs/2005-06/msg00446.html (44,660 bytes)

162. Re: Toggle fullscreen with one key (score: 18)
Author: HIDDEN
Date: 18 Mar 2005 02:08:02 +0100
;; Of course. (global-set-key [f2] (function toggle-maximize-frame)) ;; You speak about state, so: (defvar *frame-maximized-states* (make-hash-table) "Maps frames to their maximized state: When not m
/archive/html/help-gnu-emacs/2005-03/msg00467.html (8,963 bytes)

163. Today's Daily Double Stock (OTCBB:SPSC) (score: 18)
Author: HIDDEN
Date: Thu, 22 Jan 2004 03:47:37 -0500
Stock Profile Company Name Spectrum Sci & Software Hldgs Stock Symbol OTCBB: SPSC Current Price $1.81 Shares Outstanding 19,000,000 Approx. Float 4,100,000 SPSC Highlights 1 Newly list
/archive/html/help-gnu-emacs/2004-01/msg00621.html (28,684 bytes)

164. emacs compiles, yet dumps o exit (Solaris 9 x86) (score: 18)
Author: HIDDEN
Date: Tue, 01 Jul 2003 11:34:00 -0400
Hello all, First off, I have never used a help-list - do I have to suscribe or something. If the answer is 'yes', please send me email telling me how (I don't mind getting a ton of email to this effe
/archive/html/help-gnu-emacs/2003-07/msg00007.html (24,290 bytes)

165. Need help with Windows implementation of play-sound (score: 18)
Author: HIDDEN
Date: Thu, 19 Sep 2002 14:57:18 -0400
As my first attempt at modifying GNU Emacs, I decided to write a Windows compatible implementation of play-sound. I have written a function that will play any sound file that Windows Media Player can
/archive/html/help-gnu-emacs/2002-09/msg00709.html (13,609 bytes)

166. (ADV) OTCBB: XCNT Company On The Rise (score: 18)
Author: HIDDEN
Date: Sun, 14 Jul 2002 00:17:06 -0500
The Wall Street Stockwatch THE COMPANY: XENICENT INC. (OTCBB: XCNT) SYMBOL:XCNT 52 WEEK HIGH: $2.50 *INNOVATIVE TECHNOLOGY COMPANY 52 WEEK LOW: $0.15 *LED DISPLAY SYSTEMS MARKET CAP: $7.5M *STRATEGIC
/archive/html/help-gnu-emacs/2002-06/msg00074.html (11,656 bytes)

167. Re: Identifying sources of allocations in a toy Mandelbrot package (score: 9)
Author: HIDDEN
Date: Sat, 20 Jan 2024 10:09:21 +0100
garbage collector does this every lisp system represents data differently. if a value is not immediate, it has to be consed. maybe floating point numbers in emacs are not immediate. it looks like ema
/archive/html/help-gnu-emacs/2024-01/msg00060.html (7,461 bytes)

168. Re: Identifying sources of allocations in a toy Mandelbrot package (score: 9)
Author: HIDDEN
Date: Sat, 20 Jan 2024 09:29:14 +0200
Yes, every temporary Lisp object other than an integere smaller than most-positive-fixnum gets allocated from the heap. I don't know enough about the native compiler and the optimizations it perform
/archive/html/help-gnu-emacs/2024-01/msg00059.html (6,826 bytes)

169. Re: Identifying sources of allocations in a toy Mandelbrot package (score: 9)
Author: HIDDEN
Date: Sat, 20 Jan 2024 12:14:53 +0900
on the stack, but the objects themselves will be on the heap. I had presumed at a minimum that the compiler can re-use heap locations when it decides there's no risk. While the values will be in the
/archive/html/help-gnu-emacs/2024-01/msg00056.html (8,200 bytes)

170. Re: Identifying sources of allocations in a toy Mandelbrot package (score: 9)
Author: HIDDEN
Date: Fri, 19 Jan 2024 18:19:55 +0900
Most importantly to my question, how can I identify sources of consing without just knowing which functions and macros pathologically cons? Is there a way to allow usage of stack by the byte or nativ
/archive/html/help-gnu-emacs/2024-01/msg00053.html (8,006 bytes)

171. Identifying sources of allocations in a toy Mandelbrot package (score: 9)
Author: HIDDEN
Date: Wed, 17 Jan 2024 21:39:04 +0900
I was toying around with compilation speed trying to eliminate allocations and discovered that my package was spending about 40% of its runtime in GC (observed in `gc-elapsed'). I didn't suspect the
/archive/html/help-gnu-emacs/2024-01/msg00048.html (6,778 bytes)

172. Re: Text scale mode and additional fonts (score: 9)
Author: HIDDEN
Date: Sat, 30 Dec 2023 19:47:00 +0200
That's because the :size attribute is absolute: 28. Instead, use a relative value, a float such as 1.5, then it should scale with the rest of the text.
/archive/html/help-gnu-emacs/2023-12/msg00088.html (4,367 bytes)

173. Re: right aligning a string, using display (space :align-to (score: 9)
Author: HIDDEN
Date: Sat, 21 Oct 2023 09:35:38 +0300
That's not how newsgroups work: the response goes to the newsgroup. You didn't say enough about your code for me to know that window-text-pixel-size is not going to help. If so, another possibility
/archive/html/help-gnu-emacs/2023-10/msg00141.html (6,318 bytes)

174. Scaling up to a column number (score: 9)
Author: HIDDEN
Date: Sat, 15 Jul 2023 18:48:31 +0000
I would like to scale the text in a window in a way that a certain number of columns get displayed. Consider having ruler-mode and change the window size until you get to column 32. Then call a funct
/archive/html/help-gnu-emacs/2023-07/msg00208.html (4,399 bytes)

175. Re: percent-change (score: 9)
Author: HIDDEN
Date: Mon, 15 May 2023 04:54:11 +0200
A quiet NaN is not signalled. [1] (/ 1 0.0) ; 1.0e+INF (/ 0 0.0) ; -0.0e+NaN (/ -1 0.0) ; -1.0e+INF Yes, it is as you say, but why? Maybe the answer is TLDR: https://en.wikipedia.org/wiki/Division_by
/archive/html/help-gnu-emacs/2023-05/msg00144.html (6,063 bytes)

176. Re: percent-change (score: 9)
Author: HIDDEN
Date: Sun, 14 May 2023 21:29:48 +0700
In floating point, dividing by zero is allowed and yields +infinity, -infinity or (quiet) not-a-number depending on the sign of the numerator. ‘/’ knows to perform the division in floating when a
/archive/html/help-gnu-emacs/2023-05/msg00125.html (5,123 bytes)

177. Re: How much is one em (image size unit)? (score: 9)
Author: HIDDEN
Date: Tue, 04 Apr 2023 15:41:06 +0600
I have found the size of em unit, it's actually the font size (as in the the SIZE argument of font-spec). So, line height in em is: (/ (float (default-font-height)) (font-get (font-spec :name (face-f
/archive/html/help-gnu-emacs/2023-04/msg00026.html (7,114 bytes)

178. Re: Setting up abbrev (score: 9)
Author: HIDDEN
Date: Mon, 01 Aug 2022 09:42:08 +0200
Uhm, I think I float just that? -- underground experts united https://dataswamp.org/~incal
/archive/html/help-gnu-emacs/2022-08/msg00009.html (4,980 bytes)

179. Re: How to get nicer localized date? [SOLVED] (score: 9)
Author: HIDDEN
Date: Mon, 13 Jun 2022 10:54:30 +0300
If that would be so simple, but it is not. In some countries that may pass, in others not, because after the date there may be need for a dot like: (format-time-string "%A, %d. %B %Y") -- while in En
/archive/html/help-gnu-emacs/2022-06/msg00299.html (7,698 bytes)

180. How to get nicer localized date? (score: 9)
Author: HIDDEN
Date: Sun, 12 Jun 2022 20:34:24 +0300
I have been reading description of `format-time-string' but I cannot find a way to get a nicer, readable, easier understandable, localized date. I have to give an ISO 8601 date "2022-06-12" to a func
/archive/html/help-gnu-emacs/2022-06/msg00267.html (6,095 bytes)


This search system is powered by Namazu