Elias Mårtenson
Elias Mårtenson
When creating a vector using `MAKE-VECTOR`, the following error is returned: ``` Unknown CFFI type (:STRUCT FREETYPE2-TYPES:FT-VECTOR) [Condition of type CFFI::UNDEFINED-FOREIGN-TYPE-ERROR] ``` The reason for this is a typo in...
Text flow in a cell assumes that the available with is the full width of the pane, not just one column. It could be that there simply is no code...
Assume that custom gadget is created, with an implementation of the generic function `CLIM:HANDLE-REPAINT`. This method then uses `CLIM:WITH-SHEET-MEDIUM` to draw the representation of this gadget. If one tries to...
Singapore is not available as a country in WorldMapView. The country is small so it's not surprising it cannot be selected from the map, but it's also not available from...
When trying to compile the file `foo.erl` from EDTS, it complains that it can't find the file `amqp_client/include/amqp_client.hrl`: ``` c("/home/emartenson/prog/edts_error_example/apps/foo/src/foo", [{outdir, "/home/emartenson/prog/edts_error_example/apps/foo/ebin/"}]). /home/emartenson/prog/edts_error_example/apps/foo/src/foo.erl:3: can't find include lib "amqp_client/include/amqp_client.hrl" /home/emartenson/prog/edts_error_example/apps/foo/src/foo.erl:6: record...
S3 supports a number of useful parameters, such as `response-content-disposition`. It would be neat if `AUTHORIZED-URL` supported these. The following is a workaround I created in order to provide this...
To reproduce: ``` ComplexField.power(Complex(0.0), Complex(2.0)) ``` I created my own version of this function and ended up with the same problem, which was caused by me not testing for the...
Example: ``` ComplexField.power(Complex(-3.0, 0.0), 0.5) ``` This results in a complex result where both the real and imaginary parts are NaN. Workaround: ``` ComplexField(Complex(-3.0, 0.0), Complex(0.5, 0.0)) ```
I don't know much about how xref providers are implemented, but the starting point is the variable `xref-backend-functions` which should return an xref backend that is able to find symbols...
As I have been working on a GTK backend for McCLIM, I have had regular deadlocks. As I have been investigating the root cause of these deadlocks, I believe I...