Age | Commit message (Collapse) | Author |
|
Emacs has a facility for setting options on a per-file basis based on
comments in the source file. By default, all options are considered
"unsafe", and the user is queried before the variable is set. This
patch declares the variables erlang-indent-level, erlang-indent-guard
and erlang-argument-indent to be safe, if the value specified in the
source file is valid.
Such declarations usually look like this:
%% -*- erlang-indent-level: 2 -*-
and appear on the first line of the file.
|
|
"Its" is a possessive pronoun, "it's" is a contraction of
"it is".
|
|
|
|
|
|
The new_binary() function takes a size argument that is an
int. In the 64-bit emulator (sizeof(int) == 4, sizeof(Uint) == 8),
any sizes >= 0x8000000 become 0xffffffff80000000 and above and
triggers a memory allocation failure.
Change the type of the size argument to Uint, and change any
callers that cast the argument to an int.
Correction-by: Jon Meredith
|
|
* aronisstav/dialyzer/dialyzer_tests/OTP-9116:
Increase timetrap of options1 suite
Write output_plt even when plt_check is ok
Create plt with erts, kernel and stdlib only
Update test results as they currently appear in dev
Major restructure of dialyzer's testsuite
Add 'apps' option to the erlang interface
Update spec file to work with new common test structure
Test suites for Dialyzer
|
|
|
|
|
|
|
|
"When I run mnesia:first on an empty fragmented table, it tries to
access the fragment with the number one beyond the maximum. In the
sample code below, I create a table with two fragments, 'foo' and
'foo_frag2', but mnesia tries to access 'foo_frag3':"
|
|
A miss introduced when converting to common_test
|
|
OTP-9115
|
|
|
|
* ks/typer: (22 commits)
Add release notes and up version
Strengthen some specs
Allow for --show_success_typings spelling also
Add '--show_success_typings' option
Fix crash in oveloaded contracts with overlapping domains
Fix a type error and do some further cleanup
Type cleanups and simplifications
Cleanup the analysis record
Remove typer_annotator.erl and typer.hrl
Remove typer_info.erl file
Remove typer_options.erl file
Remove typer_preprocess.erl file
Delete typer_map.erl file, really this time
Delete typer_map.erl file
Various cleanups
Fix Typer's hanging when module name doesn't match filename
Moved option to its proper position
Clean up of comments
Up version to reflect major rewrite
Add '--no_spec' option to Typer
...
OTP-9113
|
|
|
|
|
|
* hb/erl_docgen/bug_fixes/OTP-8975:
Minor improvement of a script
|
|
|
|
* lukas/tools/cover_mem_footprint/OTP-9043:
Fix spelling on analyse
Add short sleep to prevent timing issues on slow machines
Update cover tests which depend on compiled files to be skipped if the compile testcase is skipped
Conflicts:
lib/tools/test/cover_SUITE.erl
|
|
|
|
* kenneth/asn1/componentrelation/OTP-9092:
Fixed crash in asn1ct_check occuring for SEQUENCE with extension mark and component relation attribute.
|
|
|
|
|
|
* ia/public_key/doc/link-fix:
Removed white space in function name tag as it breaks links
|
|
|
|
|
|
snmpc to snmpc(command)...
|
|
|
|
An unnecessary include directive has been removed.
|
|
* hb/edoc/wiki_encoding/OTP-9109:
Add encoding when parsing Wiki text
|
|
* hb/edoc/elib_private/OTP-9110:
Clean up edoc_lib(3)
|
|
* ia/odbc/prepare-release-and-bettre-error-msg/OTP-9111:
Prepare relese and improved error messages OTP-9111
|
|
|
|
* ia/public_key/prepare-release:
Prepare for release
|
|
* ia/ssl/prepare-release:
Prepare for release
|
|
|
|
* jk/ssl_connection_hibernate:
Add the option { hibernate_after, int() } to ssl:connect and ssl:listen
OTP-9106
|
|
component relation attribute.
|
|
httpd_response:send_chunk handles empty list and empty binary -
i.e. no chunk is sent, but it does not handle a list with an
empty binary [<<>>]. This will be sent as an empty chunk - which
in turn will be encoded by http_chunk to the same as a final
chunk, which will make the http client believe that the end of
the page is reached.
|
|
|
|
|
|
|
|
|
|
The <c>edoc_lib</c> module is meant to be private, but since it is
referred to from other man pages it has been included in the OTP
documentation. This change makes all functions private except those
referred to from other pages.
|
|
|
|
5.4 appear in two places).
|
|
EDoc used to fail on strings such as "���".
Thanks to Richard Carlsson.
|
|
|
|
|
|
OTP-9107
|